export interface HtmlFileOptions { readonly title: string; readonly sheets: readonly string[]; readonly body: string; readonly lang?: string; readonly dir?: 'ltr' | 'rtl'; } export declare function writeHtmlFile(options: HtmlFileOptions): string; //# sourceMappingURL=html-file.d.ts.map