export type SpeechToTextSize = "sm" | "md" | "lg"; export interface SpeechToTextOptions { selector: string; placeholder?: string; language?: string; size?: SpeechToTextSize; dark?: boolean; initialTranscript?: string; idleStatus?: string; listeningStatus?: string; startLabel?: string; stopLabel?: string; hydrate?: boolean; onResult?: (text: string) => void; onRecordingChange?: (isRecording: boolean) => void; } //# sourceMappingURL=SpeechToText.types.d.ts.map