import { type SpeechProbabilities } from './models'; export declare class FrameProcessor { modelProcessFunc: (frame: Float32Array) => Promise; modelResetFunc: () => void; active: boolean; constructor(modelProcessFunc: (frame: Float32Array) => Promise, modelResetFunc: () => void); reset: () => void; pause: () => void; resume: () => void; process: (frame: Float32Array) => Promise; }