export declare class FsError extends Error { readonly code: string; readonly errno: number; constructor(code: string, errno: number, message: string); } export declare const enoent: (path: string) => FsError; export declare const eperm: (path: string, op?: string) => FsError; export declare const eio: (reason: string) => FsError; export declare const eisdir: (path: string) => FsError; export declare const enotdir: (path: string) => FsError; export declare const enotempty: (path: string) => FsError; export declare const eexist: (path: string) => FsError; export declare const enosys: (op: string) => FsError; export declare const einval: (reason: string) => FsError; export declare const efbig: (path: string) => FsError; export declare const ebusy: (path: string) => FsError; export declare const enametoolong: (path: string) => FsError; //# sourceMappingURL=errors.d.ts.map