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