/** * Deterministic routing evaluation self-probe. * * Runs a fixed set of offline decision fixtures with fixture evidence and no * provider, returning a bounded verdict used by CLI (and the packed/binary * artifact acceptance). This is the deterministic gate for routing decisions. */ export interface RoutingProbeCheck { scenario: string; passed: boolean; expected?: string; actual?: string; message: string; } export interface RoutingProbeResult { passed: boolean; checks: RoutingProbeCheck[]; } /** Run the canonical offline routing fixtures deterministically. */ export declare function runRoutingSelfProbe(): RoutingProbeResult; //# sourceMappingURL=probe.d.ts.map