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