interface VoiceInputProps { onResult: (text: string) => void; onError?: (error: string) => void; } export default function VoiceInput({ onResult, onError }: VoiceInputProps): import("react/jsx-runtime").JSX.Element; export {};