/** * The 18-type content taxonomy used by the Frase platform. * * This is the canonical list of values the `/api/v1/briefs` endpoint * accepts in `content_type`. The API also accepts legacy 5-bucket * values (`blog`, `guide`, `landing`, `product`, `comparison`) for * back-compat and normalizes them at the boundary, but new MCP * integrations should use these 18 values directly. * * Keep this list in lockstep with `src/lib/core/content-types.ts` * in the main app. We can't import from there because the MCP server * publishes as its own npm package and can't reach into Next.js source. */ export declare const CONTENT_TYPES: readonly ["blog_post", "page", "faq", "glossary", "comparison", "pillar", "how_to", "landing", "listicle", "case_study", "tutorial", "news", "product_update", "data_report", "event", "resource", "alternative", "tool_review"]; export type ContentType = (typeof CONTENT_TYPES)[number]; //# sourceMappingURL=content-types.d.ts.map