import { PluginSystemHelpers } from "../createPluginSystemHelpers.js"; import * as fs from "./lib/fsLimit.js"; export type WriteProjectFileArgs = { filename: string; contents: Parameters[1]; format?: boolean; formatOptions?: Parameters[2]; helpers: PluginSystemHelpers; }; /** * Writes a file to the project with optional formatting. * * @returns The file path to the written file. */ export declare const writeProjectFile: (args: WriteProjectFileArgs) => Promise;