import type { CatalogSummaryEntry } from "../briefing.js"; export interface CatalogPromptOptions { /** Restrict output to these component names (e.g. an outline's section). */ only?: string[]; /** This host's own components, from the briefing pack's one-line reduction. */ host?: readonly CatalogSummaryEntry[]; /** Omit the header preamble (the data law) — default false. */ omitPreamble?: boolean; } /** Render the whole catalog — Kit then host — from the schemas. */ export declare function catalogPrompt(options?: CatalogPromptOptions): string; //# sourceMappingURL=catalog-prompt.d.ts.map