import { IWriteOptions } from "../../../@types/index"; /** * **write** * * Writes a file to the filesystem. * * **Errors:** * - `do-devops/file-exists` * - `do-devops/file-write-error` * * **Note:** _if the filename is prefixed with a_ `.`, `~`, _or_ `/` _then it will be considered a * full file path but in other cases it will always be offset from the current working * directory._ */ export declare function write(filename: string, data: any, options?: IWriteOptions): { filename: string; data: any; }; //# sourceMappingURL=write.d.ts.map