declare function _exports(path: any): {
    readonly directory: boolean;
    readonly readOnly: boolean;
    readonly hidden: boolean;
    readonly mtime: number;
    readonly atime: number;
    readonly executable: boolean;
    decodeAttributes: () => void;
    encodeAttributes: () => void;
    toJSON: () => {
        path: string;
        isDirectory: boolean;
        isReadOnly: boolean;
        isHidden: boolean;
        isExecutable: boolean;
        mTime: number;
        aTime: number;
    };
    toString: () => string;
};
export = _exports;
