import { Logger, WhisperOptions } from './types'; export interface IOptions { modelName: string; modelRootPath?: string; autoDownloadModelName?: string; whisperOptions?: WhisperOptions; withCuda?: boolean; removeWavFileAfterTranscription?: boolean; logger?: Logger; } export declare function nodewhisper(filePath: string, options: IOptions): Promise;