export interface Section { title: string; body: string; } export declare function renderSection(title: string, lines: string[]): Section; export declare function renderKeyValues(rows: Array<[string, unknown]>): string[]; export declare function renderDocument(sections: Section[], generatedAt?: string): string; //# sourceMappingURL=render.d.ts.map