import { CheetahModel, CheetahOptions } from '@picovoice/cheetah-web';
export declare const useCheetah: () => {
    result: {
        transcript: string;
        isComplete?: boolean;
    } | null;
    isLoaded: boolean;
    isListening: boolean;
    error: Error | null;
    init: (accessKey: string, model: CheetahModel, options?: CheetahOptions) => Promise<void>;
    start: () => Promise<void>;
    stop: () => Promise<void>;
    release: () => Promise<void>;
};
//# sourceMappingURL=use_cheetah.d.ts.map