import { BaseError } from "./BaseError"; export declare class PathNotFoundError extends BaseError { readonly path: string; /** @private */ constructor(path: string, prefix?: string, prototype?: any); readonly code: "ENOENT"; }