import { type Voice } from 'native-say'; export type TtsVoice = Voice; export type TtsOptions = { voice?: string; rate?: number; output?: string; }; export declare function getVoices(): Promise; export declare function runTts(text: string, options?: TtsOptions): Promise;