export declare const PROFILE_AUDIT_LEVELS: Set; export declare const PROFILE_EVOLUTION_MODES: Set; export declare const PROFILE_TEST_LEVELS: Set; export declare const PROFILE_DEFAULTS: { audit_level: string; risk_paths: string[]; evolution_mode: string; tests: { on_change: string; on_risk_change: string; commands: Record; }; pain: { soft_capture_threshold: number; adaptive: { enabled: boolean; spiral_boost: number; min_threshold: number; max_threshold: number; backlog_trigger: number; hard_failure_trigger: number; low_recent_success_boost: number; high_recent_pain_boost: number; }; }; lifecycle: { enabled: boolean; heartbeat_stale_hours: number; }; edit_verification: { enabled: boolean; max_file_size_bytes: number; fuzzy_match_enabled: boolean; fuzzy_match_threshold: number; skip_large_file_action: "warn" | "block"; }; custom_guards: { pattern: string; message: string; severity: string; }[]; }; export declare function normalizeProfile(rawProfile: any): any;