import { File } from "./file.js"; export type StaticVueFile = File; /** * Creates a static Vue component file * * @example * // Create a Vue component file with content * const button = await StaticVueFile("Button.vue", * ` * * * * ` * ); */ export declare function StaticVueFile(id: string, ...args: [content: string] | [path: string, content: string]): Promise; //# sourceMappingURL=static-vue-file.d.ts.map