/** * Sample agent certificate builder. * * Produces a realistic certificate body for the Vaspera Certify MCP * server itself — the dogfood. It reflects the actual hardened state of * this codebase, so the sample doubles as proof the platform certifies * its own primary use case. * * @module certification/agent-certificate-sample */ import type { AgentCertificateBody } from "./agent-certificate.js"; export interface SampleOptions { toolVersion: string; /** ISO timestamp for issuedAt (kept injectable for deterministic tests). */ issuedAt: string; /** ISO timestamp for expiresAt. */ expiresAt: string; certificateId: string; } /** * Build a sample certificate body certifying the vaspera-hardening MCP * server. Values mirror the real hardening work landed this cycle. */ export declare function buildSampleCertificateBody(options: SampleOptions): AgentCertificateBody; //# sourceMappingURL=agent-certificate-sample.d.ts.map