export type ToolProfile = 'core' | 'pro' | 'full' | 'dev' | 'experimental'; export interface ProfileDefinition { name: ToolProfile; label: string; description: string; approxToolCount: string; isDefault: boolean; } export declare const PROFILE_DEFINITIONS: Record; export declare function getEnabledProfiles(active: ToolProfile): ToolProfile[];