/** * Write file * * @param filepath The absolute file path * @param content The file content string * @param eol By default we apend a `node:os.EOL` end of line a the end of the file */ export declare function fsWriteSync(filepath: string, content: string, eol?: boolean): void; export default fsWriteSync;