import type { EnvField } from "../introspect.js"; export interface MarkdownDocsOptions { /** H1/H2-style title rendered above the table. Default: `"Environment Variables"`. */ title?: string; /** Optional paragraph rendered between the title and the table. */ intro?: string; /** End-of-line. Default: `"\n"`. */ eol?: string; } /** * Generate a Markdown document describing the environment variables a * service expects. Designed to be committed as `ENV.md` and read by * infra / SRE teams without forcing them into the TypeScript source. */ export declare function generateMarkdownDocs(fields: readonly EnvField[], options?: MarkdownDocsOptions): string; //# sourceMappingURL=markdown.d.ts.map