import { BaseError } from "./BaseError";
export declare class DirectoryNotFoundError extends BaseError {
    readonly dirPath: string;
    constructor(dirPath: string);
}
