/** * Quickly checks if an error is a "file not found" error. Intended to be used * in a catch block around "fs" functions. * * @param e The error to check * @returns True if the error is a "file not found" error */ export declare function isNotFound(e: unknown): boolean;