export interface WhisperOptions { outputInCsv?: boolean; outputInJson?: boolean; outputInJsonFull?: boolean; outputInLrc?: boolean; outputInSrt?: boolean; outputInText?: boolean; outputInVtt?: boolean; outputInWords?: boolean; translateToEnglish?: boolean; language?: string; timestamps_length?: number; wordTimestamps?: boolean; splitOnWord?: boolean; noGpu?: boolean; } export interface Logger { debug: (...args: any[]) => void; error: (...args: any[]) => void; log: (...args: any[]) => void; }