declare type func = any;
interface SayButtonProps {
    children?: any;
    disabled?: boolean;
    lang?: string;
    onBoundary?: func;
    onEnd?: func;
    onError?: func;
    onStart?: func;
    pitch?: number;
    ponyfill?: {
        speechSynthesis: any;
        SpeechSynthesisUtterance: any;
    };
    rate?: number;
    text?: string;
    voice?: any | func;
    volume?: number;
}
declare const SayButton: (props: SayButtonProps) => any;
export default SayButton;
//# sourceMappingURL=SayButton.d.ts.map