import { TypeORMError } from "./TypeORMError"; import { EntityMetadata } from "../metadata/EntityMetadata"; /** * Thrown when specified entity property was not found. */ export declare class EntityPropertyNotFoundError extends TypeORMError { constructor(propertyPath: string, metadata: EntityMetadata); }