import { UpdatePluginConfigDto } from '../../../modules/config/dto/config.dto'; import { BUDDY_VOICEAI_PLUGIN_NAME } from '../buddy-voiceai.constants'; export declare class UpdateBuddyVoiceaiConfigDto extends UpdatePluginConfigDto { type: typeof BUDDY_VOICEAI_PLUGIN_NAME; enabled?: boolean; apiKey?: string | null; voiceId?: string | null; }