/** Independent implementation of the Fortemi wire canonicalization contract. */ export declare function canonicalFortemiDatasetJson(value: unknown): string; export declare function fortemiDatasetDigest(value: unknown): string; interface Checkpoint { sequence: number; scope: { dataset: string; [key: string]: string; }; } export interface FortemiDatasetRunReceipt { receiptDigest: string; requestDigest: string; runId: string; idempotencyKey: string; profiles: unknown; namespaceId: string; bindings: Record; effects: Array<{ outcome: "committed" | "conflict" | "rejected" | "unverifiable"; }>; counts: { attempted: number; committed: number; rejected: number; }; checkpoint: { before?: Checkpoint; after: Checkpoint; }; capabilityDecision: { accepted: boolean; selected: string[]; degradations: unknown[]; }; resourceEnvelope: { maxRecords: number; }; state: "running" | "committed" | "degraded" | "failed" | "cancelled" | "ambiguous"; verification: "pending" | "verified" | "failed" | "unverifiable"; } /** Schema validity, semantic consistency, and checksum integrity; not issuer authentication. */ export declare function verifyFortemiDatasetRunReceipt(value: unknown): string[]; export {}; //# sourceMappingURL=fortemi-run-receipt.d.ts.map