import { SpeechOptions, SpeechEventCallback, VoiceQuality, Voice } from './Speech.types'; export { SpeechOptions, SpeechEventCallback, VoiceQuality, Voice }; export declare function speak(text: string, options?: SpeechOptions): void; export declare function getAvailableVoicesAsync(): Promise; export declare function isSpeakingAsync(): Promise; export declare function stop(): Promise; export declare function pause(): Promise; export declare function resume(): Promise;