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