import * as ort from 'onnxruntime-web'; export interface SpeechProbabilities { notSpeech: number; isSpeech: number; } export interface Model { reset_state: () => void; process: (arr: Float32Array) => Promise; } export declare class Silero { _session?: ort.InferenceSession; _h?: ort.Tensor; _c?: ort.Tensor; _sr?: ort.Tensor; static new: () => Promise; init: () => Promise; reset_state: () => void; process: (audioFrame: Float32Array) => Promise; }