import { SayUtteranceProps } from './SayUtterance';
interface SayWithContextProps extends SayUtteranceProps {
    ponyfill?: {
        speechSynthesis: any;
        SpeechSynthesisUtterance: any;
    };
}
declare const SayWithContext: ({ ponyfill, ...props }: SayWithContextProps) => any;
export default SayWithContext;
//# sourceMappingURL=Say.d.ts.map