export interface SsgOptions { /** * Prefix for image paths (e.g. /images) */ publicImagePathPrefix?: string; /** * Custom class names for elements */ classNames?: { image?: string; table?: string; blockquote?: string; }; } /** * Static HTML Generator * Generates static HTML from Markdown without relying on React or browser DOM. * Suitable for SSG (Static Site Generation). */ export declare class StaticHtmlGenerator { private constructor(); /** * Generates static HTML from Markdown string */ static generateStaticHtml(markdown: string, options?: SsgOptions): Promise; } //# sourceMappingURL=StaticHtmlGenerator.d.ts.map