/**
 * Thrown when repository for the given class is not found.
 */
export declare class RepositoryNotFoundError extends Error {
    name: string;
    constructor(connectionName: string, entityClass: Function | string);
}
