export declare class DirectoryNotFoundError extends Error {
    name: string;
    path: string;
    constructor(directory: string);
}
export declare class FileExistError extends Error {
    name: string;
    path: string;
    constructor(filePath: string);
}
export declare class FileWriteError extends Error {
    name: string;
    path: string;
    constructor(dest: string);
}
