export interface ITranscribeOptions { modelName?: 'tiny' | 'base' | 'small' | 'medium' | 'large' | 'turbo' | 'large-v3'; audio: string; debug?: boolean; } declare class Whisper { private mappingArgs; transcribe(options?: ITranscribeOptions): Promise; } declare const _default: Whisper; export default _default;