import { TypeORMError } from "./TypeORMError"; /** * Thrown when consumer tries to access entity manager before connection is established. */ export declare class CannotGetEntityManagerNotConnectedError extends TypeORMError { constructor(connectionName: string); }