import type { EventName, TextToSpeechOptions, TextToSpeech as TextToSpeechSpec, TextToSpeechVoice } from './specs/text-to-speech.nitro'; export declare const TextToSpeechNitroModule: TextToSpeechSpec; export declare const TextToSpeech: { speak: (text: string, options?: TextToSpeechOptions) => Promise; stop: () => Promise; pause: () => Promise; resume: () => Promise; getVoices: () => Promise; addListener: (event: EventName, listener: (word?: string) => void) => (() => void); }; //# sourceMappingURL=index.d.ts.map