UNPKG

apphouse

Version:

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

14 lines (13 loc) 650 B
import { SelectStyles } from '../../components/Select'; import { TextToSpeech } from '../../models/TextToSpeech'; import { Utterance } from '../../models/textToSpeech/Utterance'; import { ApphouseComponent } from '../component.interfaces'; import { BoxSizeStyles, ButtonStyleVariant } from '../../styles/defaults/themes.interface'; import React from 'react'; export interface VoiceSpeedSelectorProps extends ApphouseComponent<SelectStyles> { utterance: Utterance; textToSpeech: TextToSpeech; variant?: keyof ButtonStyleVariant; size?: keyof BoxSizeStyles; } export declare const VoiceSpeedSelector: React.FC<VoiceSpeedSelectorProps>;