import type { IGenerateVoiceOptions } from '../types/config';
export declare function tts({ model, voiceName, text, speed, pitch, volumn, emotion, }: IGenerateVoiceOptions & {
    model: string;
}): Promise<any>;
