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