UNPKG

apphouse

Version:

Component library for React that uses observable state management and theme-able components.

12 lines (11 loc) 458 B
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>;