import React from 'react';
import { Utterance } from '../../models/textToSpeech/Utterance';
import { TextToSpeech } from '../..';
import { BoxSizeStyles, ButtonStyleVariant } from '../../styles/defaults/themes.interface';
export interface VoiceSelectorProps {
    utterance: Utterance;
    textToSpeech: TextToSpeech;
    variant?: keyof ButtonStyleVariant;
    size?: keyof BoxSizeStyles;
}
export declare const VoiceSelector: React.FC<VoiceSelectorProps>;
