import { File } from "./file.js"; /** * Creates a YAML file with formatted content * * @example * // Create a YAML configuration file * const config = await StaticYamlFile("config.yaml", { * server: { * host: "localhost", * port: 3000 * }, * database: { * url: "postgresql://localhost:5432/db", * pool: { * min: 1, * max: 10 * } * } * }); */ export type StaticYamlFile = File; export declare function StaticYamlFile(id: string, ...args: [content: any] | [path: string, content: any]): Promise; //# sourceMappingURL=static-yaml-file.d.ts.map