Version: 1.0.01.0.11.0.21.1.01.1.11.1.21.1.32.0.02.0.12.0.22.0.32.0.42.0.53.0.04.0.0
/// <reference types="node" />
import type * as fs from 'node:fs';
export type Stats = fs.Stats;
export type ErrnoException = NodeJS.ErrnoException;
export type AsyncCallback = (error: ErrnoException | null, stats: Stats) => void;