import SistaAiEngine from './core/SistaAiEngine'; import { VoiceFunction } from './core/_types/sharedTypes'; export interface AiAssistantContextType { aiAssistant?: SistaAiEngine; on?: (event: string, listener: (...args: any[]) => void) => void; off?: (event: string, listener: (...args: any[]) => void) => void; registerFunctions?: (voiceFunctions: VoiceFunction[]) => void; } declare const AiAssistantContext: import("react").Context; export declare const useAiAssistant: () => AiAssistantContextType; export default AiAssistantContext;