export declare const useAIAvailability: () => {
    status: "error" | "success" | "idle" | "loading";
    isEnabled: boolean | undefined;
};
