import { EntityTarget } from "../common/EntityTarget";
import { TypeORMError } from "./TypeORMError";
/**
 * Thrown when repository for the given class is not found.
 */
export declare class RepositoryNotTreeError extends TypeORMError {
    constructor(entityClass: EntityTarget<any>);
}
