import type { KitComponentSpec } from "./schema.js"; export interface KitPromptOptions { /** Restrict output to these component names (e.g. an outline's section). */ only?: string[]; /** Omit the header preamble (the data law) — default false. */ omitPreamble?: boolean; } export declare const PREAMBLE: string; /** What the model is SHOWN for a component: the corrected example where one * exists, the spec's own otherwise. Both prompts read this, so neither can show * an idiom the other has retired. */ export declare const promptExamples: (spec: KitComponentSpec) => readonly string[]; /** Render the generation prompt section from the schemas. */ export declare function kitPrompt(options?: KitPromptOptions): string; //# sourceMappingURL=kit-prompt.d.ts.map