import type { UseAIGenerationHookWrapper } from './useAIGeneration'; import type { UseAIConversationHook } from './useAIConversation'; import type { getSchema } from '../types'; type UseAIHooks>, Schema extends Record> = { useAIConversation: UseAIConversationHook>; } & UseAIGenerationHookWrapper; export declare function createAIHooks>, Schema extends getSchema>(_client: Client): UseAIHooks; export {};