declare type func = any;
export interface SayUtteranceProps {
    onEnd: func;
    onError: func;
    onStart: func;
    utterance: any;
}
interface SayUtteranceWithContextProps extends SayUtteranceProps {
    ponyfill?: {
        speechSynthesis: any;
        SpeechSynthesisUtterance: any;
    };
}
declare const SayUtteranceWithContext: ({ ponyfill, ...props }: SayUtteranceWithContextProps) => any;
export default SayUtteranceWithContext;
//# sourceMappingURL=SayUtterance.d.ts.map