import { File } from "./file.js"; /** * Creates a JSON file with formatted content * * @example * // Create a JSON configuration file * const config = await StaticJsonFile("config.json", { * api: { * endpoint: "https://api.example.com", * version: "v1" * }, * features: ["auth", "logging"] * }); */ export type StaticJsonFile = File; export declare function StaticJsonFile(id: string, ...args: [content: any] | [path: string, content: any]): Promise; //# sourceMappingURL=static-json-file.d.ts.map