import { TxRegistry } from './tx-registry'; import { TxRoutePoint } from "./tx-routepoint"; export declare class TxRoutePointRegistryContainer extends TxRegistry { private static _instance; private routeContainer; private constructor(); static readonly instance: TxRoutePointRegistryContainer; create(name: string | Symbol): TxRoutePoint; route(name: string | Symbol): TxRoutePoint; /** * TxRegistryContainerScopeEnum.TRANSIENT - mean create new instence on every get. * @param type */ setDriver(type: any): void; }