import { UpdatePluginConfigDto } from '../../../modules/config/dto/config.dto'; import { BUDDY_CLAUDE_PLUGIN_NAME } from '../buddy-claude.constants'; export declare class UpdateBuddyClaudeConfigDto extends UpdatePluginConfigDto { type: typeof BUDDY_CLAUDE_PLUGIN_NAME; enabled?: boolean; apiKey?: string | null; model?: string | null; }