import { File } from "./file.js"; export type StaticHTMLFile = File; /** * Creates a static HTML file * * @example * // Create an HTML file with content * const page = await StaticHTMLFile("index.html", * ` * * * * * My Website * * * *
*

Welcome to My Website

*
*
*

This is the main content of the page.

*
* * * ` * ); */ export declare function StaticHTMLFile(id: string, ...args: [content: string] | [path: string, content: string]): Promise; //# sourceMappingURL=static-html-file.d.ts.map