/** * useAI Hook * AI service connection (Aria service) */ import type { UseAIOptions } from './types'; export declare const useAI: ({ onError }?: UseAIOptions) => { isLoading: boolean; error: Error; isAvailable: boolean; executeAITask: (task: string, input: unknown) => Promise<{ success: boolean; task: string; result: any; }>; }; export type { UseAIOptions } from './types'; //# sourceMappingURL=useAI.d.ts.map