/** * Post-quantum spend-envelope compatibility mapping. * * This file documents compatibility at the receipt and policy layer only. It * does not claim ML-DSA signing, post-quantum key generation, or audit-ledger * publication. Those claims must come from cryptographic tests and package * inspection before they appear in AgentPay product docs. */ export type AgentPaySpendControl = { name: 'spend_limit' | 'allowlist' | 'x402_receipt' | 'approval_gate' | 'audit_metadata'; agentpayField: string; envelopeConcept: string; compatibility: 'compatible' | 'requires_adapter' | 'not_implemented'; nonClaim: string; }; export type SpendEnvelopeCompatibilityReport = { status: 'assessment_only'; controls: AgentPaySpendControl[]; unsupportedClaims: string[]; }; export declare function buildPostQuantumSpendEnvelopeCompatibilityReport(): SpendEnvelopeCompatibilityReport; //# sourceMappingURL=post-quantum-spend-envelope-compatibility.d.ts.map