import { UpdatePluginConfigDto } from '../../../modules/config/dto/config.dto'; import { BUDDY_SYSTEM_TTS_PLUGIN_NAME } from '../buddy-system-tts.constants'; export declare class UpdateBuddySystemTtsConfigDto extends UpdatePluginConfigDto { type: typeof BUDDY_SYSTEM_TTS_PLUGIN_NAME; enabled?: boolean; engine?: string | null; voice?: string | null; }