import { type BigIntStats, type Stats } from 'fs';
export type Callback = (err: NodeJS.ErrnoException | null, stats?: Stats | BigIntStats) => void;
export default function lstatReal(path: string, callback: Callback): void;
