import { ValueTypeOf } from '@elaraai/east'; import { DecisionType as EastDecisionType, UrgencyType as EastUrgencyType } from '@elaraai/e3-ui/internal'; /** JS-side shape of a `DecisionType` value. */ export type Decision = ValueTypeOf; /** JS-side shape of one `DecisionOptionType` (a decision's alternative). */ export type DecisionOption = Decision['alternatives'][number]; /** JS string-union of every `UrgencyType` variant tag. */ export type UrgencyKind = ValueTypeOf['type']; /** Queue sort weight — overdue first, routine last. */ export declare const URGENCY_RANK: Record; //# sourceMappingURL=types.d.ts.map