export interface SpeechOptions {
    text?: string;
    textTemDir?: string;
    [key: string]: any;
}
export default function speech(options: SpeechOptions): Promise<void | string>;
