export interface Props { /** Callback with transcribed text */ onTranscription?: (text: string) => void; /** Language code (BCP-47) */ language?: string; /** Enable continuous mode */ continuous?: boolean; /** Size of the button */ size?: 'sm' | 'md' | 'lg'; /** Disabled state */ disabled?: boolean; } declare const VoiceInput: import("svelte").Component; type VoiceInput = ReturnType; export default VoiceInput; //# sourceMappingURL=VoiceInput.svelte.d.ts.map