import { TypeORMError } from"./TypeORMError";
/**
* Thrown when consumer tries to use naming strategy that does not exist.
*/exportdeclareclassNamingStrategyNotFoundErrorextendsTypeORMError {
constructor(strategyName: string | Function, connectionName: string);
}