export interface SpeechProbabilities { notSpeech: number; isSpeech: number; } export interface Model { reset_state: () => void; process: (arr: Float32Array) => Promise; } export declare class Silero { _session: any; _h: any; _c: any; _sr: any; static new: () => Promise; init: () => Promise; reset_state: () => void; process: (audioFrame: Float32Array) => Promise; } //# sourceMappingURL=models.d.ts.map