import React from 'react';
import { SpeechRecognitionResult } from '../types';
interface VoiceToTextConverterProps {
    className?: string;
    showFileUpload?: boolean;
    showVoiceRecorder?: boolean;
    showResults?: boolean;
    defaultLanguage?: string;
    onResult?: (result: SpeechRecognitionResult) => void;
    onError?: (error: string) => void;
    onStart?: () => void;
    onStop?: () => void;
    children?: React.ReactNode;
}
export declare const VoiceToTextConverter: React.FC<VoiceToTextConverterProps>;
export {};
//# sourceMappingURL=VoiceToTextConverter.d.ts.map