export declare const CHANGE_PROFILE_RULE_TABLE_VERSION: "1.0.0"; export type ChangeProfileCategory = "baseline" | "overlays" | "triggers" | "exclusions" | "escalations"; export interface ChangeProfileRule { readonly id: string; readonly ordinal: number; readonly category: ChangeProfileCategory; } export declare const CHANGE_PROFILE_RULES: readonly ChangeProfileRule[];