import type { BigIntStats, Dirent, Stats } from 'fs';
export default function statsSpys(): {
    (stats: Stats | BigIntStats | Dirent): void;
    dir: {
        (_stats?: Stats | BigIntStats | Dirent): void;
        callCount: number;
    };
    file: {
        (_stats?: Stats | BigIntStats | Dirent): void;
        callCount: number;
    };
    link: {
        (_stats?: Stats | BigIntStats | Dirent): void;
        callCount: number;
    };
    callCount: number;
};
