interface instanceConfig { id: string; modelName: string; threshold: number; bufferCnt: number; sticky: boolean; } /** * Custom hook for handling keyword detection using KeyWordRNBridge * @returns An object with functions and state for keyword detection */ export declare const useModel: () => { isListening: boolean; startListening: () => Promise; loadModel: (useConfigs: instanceConfig[], callback: (phrase: string) => void) => Promise; setKeywordDetectionLicense: (licenseKey: string) => Promise; stopListening: () => Promise; }; export default useModel;