export declare function isEnoent(error: unknown): error is Error & { code: "ENOENT"; }; export declare function isSystemError(error: unknown): error is Error & { code: string; };