/** * Proof bundle text format (§2.8). * * Serializes and parses proof bundles in the C2SP tlog-proof format. * This format is self-contained and offline-verifiable. */ import type { ProofBundle } from './submission.js'; /** * Serialize a ProofBundle to the C2SP tlog-proof text format (§2.8). * * Output format: * c2sp.org/tlog-proof@v1 * index * * * ... * * */ export declare function formatProofBundle(bundle: ProofBundle): string; /** * Parse a C2SP tlog-proof text format string back into a ProofBundle. * Throws on malformed input with a descriptive message. */ export declare function parseProofBundle(text: string): ProofBundle; //# sourceMappingURL=proof-text.d.ts.map