import { Entity } from '../entities/interfaces/Entity';
import { EntityError } from './EntityError';
export declare class EntityRegistrationError extends EntityError {
    readonly entity: Entity;
    constructor(entity: Entity, msg: string);
}
