/** * @fileoverview Intent IR Constants * * Canonical orderings and constant values. */ import type { Role } from "./schema/index.js"; /** * Canonical role ordering for display/pretty-print. * * NOTE: This is for display only. Canonical serialization uses * RFC 8785 lexicographic order per FDR-INT-CAN-003. */ export declare const ROLE_ORDER: readonly Role[]; /** * All valid Force values. */ export declare const FORCE_VALUES: ("ASK" | "DO" | "VERIFY" | "CONFIRM" | "CLARIFY")[]; /** * All valid EventClass values. */ export declare const EVENT_CLASS_VALUES: ("OBSERVE" | "TRANSFORM" | "SOLVE" | "CREATE" | "DECIDE" | "CONTROL")[]; /** * All valid Role values. */ export declare const ROLE_VALUES: ("TARGET" | "THEME" | "SOURCE" | "DEST" | "INSTRUMENT" | "BENEFICIARY")[]; /** * Intent IR wire version. */ export declare const INTENT_IR_VERSION: "0.2"; //# sourceMappingURL=constants.d.ts.map