/** * 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 fsWrite(filepath: string, content: string, eol?: boolean): Promise; export default fsWrite;