import { File } from "./file.js"; export type StaticAstroFile = File; /** * Creates a static Astro component file * * @example * // Create an Astro component file with content * const header = await StaticAstroFile("Header.astro", * `--- * import Logo from '../components/Logo.astro'; * const navItems = ['Home', 'About', 'Contact']; * --- * *
* * *
* * ` * ); */ export declare function StaticAstroFile(id: string, ...args: [content: string] | [path: string, content: string]): Promise; //# sourceMappingURL=static-astro-file.d.ts.map