/** * Role preset configurations for the Role component and Prompt defaults. * Each preset defines a role title, default expertise areas, optional traits, * experience level, and style. */ export interface RolePresetConfig { name: string; title: string; expertise: string[]; traits?: string[]; experienceLevel?: 'junior' | 'mid' | 'senior' | 'expert' | 'principal'; style?: 'professional' | 'casual' | 'academic' | 'friendly'; } /** * Lookup table of common role presets. * Organized by category: Support, Technical, Creative, Business, Education, Domain Expert. */ export declare const ROLE_PRESETS: Record; //# sourceMappingURL=role-presets.d.ts.map