import { TypeORMError } from"./TypeORMError";
/**
* Thrown when consumer tries to recreate connection with the same name, but previous connection was not closed yet.
*/exportdeclareclassAlreadyHasActiveConnectionErrorextendsTypeORMError {
constructor(connectionName: string);
}