export declare class AIVoiceController {
    getConfig(): Promise<{
        models: {
            value: string;
            label: string;
        }[];
        voices: string[];
    }>;
}
