import { Command } from 'commander'; /** * Options for Markdown to HTML conversion */ export interface MarkdownHtmlAgentOptions { /** Document title displayed in header */ title: string; /** Markdown content as string */ markdown: string; /** Date string to display; defaults to system date */ date?: string; /** Path to logo SVG file */ logoPath?: string; } /** * Converts Markdown content to an HTML string with FTPROD branding */ export declare function markdownHtmlAgent(opts: MarkdownHtmlAgentOptions): Promise; export declare const cli: { command: string; description: string; builder: (cmd: Command) => Command; handler: (markdownFile: string, outputFile: string, opts: any) => Promise; };