import { type ProofResult } from '../../../proof/attestor.ts'; /** * The MCP's rich `run_proof` view: persist the full claim to disk, return * identifier + extractedParameters + a prettified claim (request dropped, byte * arrays as base64) + trimmed logs, and — under `RECLAIM_AGENT_TRACE=1` — a * forensic run dump. This is the developer-facing shape; the cloud backend * projects the same {@link ProofResult} to a lean summary instead. */ export declare function shapeRichProofResult(result: ProofResult, opts: { provider: unknown; hasSecrets: boolean; attestorUrl?: string; }): Record;