import type { IGenerateVoiceOptions } from '../types/config';
export declare function tts({ voiceName, text, withFrontend, speed, pitch, volumn, }: IGenerateVoiceOptions): Promise<{
    audio: string;
    duration: number;
    frontend?: any;
}>;
