export type AudioRecorderState = "idle" | "recording" | "processing"; export declare class AudioRecorderError extends Error { constructor(message: string); } export interface CopilotChatAudioRecorderRef { state: AudioRecorderState; start: () => Promise; stop: () => Promise; dispose: () => void; } //# sourceMappingURL=audioRecorder.d.ts.map