/** * Built-in format seed for the unified registry. * * Plan reference: server-provided-what-a-reactive-globe.md → Track A. * * Seeds the seven core HTTP-target formats: json, html, markdown, csv, yaml, * xml, plain. The MIME-mapping core comes from @portel/cli's `formatToMimeType` * for parity with CLI rendering. Renderers here are minimal but functional — * they cover the cases the spec calls out and fall back to JSON via the * registry's fallback contract for everything else. * * Other targets (cli, beam, mcp) are seeded by their own modules. This file * intentionally only registers HTTP renderers. */ import { FormatRegistry } from './registry.js'; export declare function seedDefaultFormats(registry: FormatRegistry): void; export declare function getDefaultRegistry(): FormatRegistry; //# sourceMappingURL=seed.d.ts.map