import { Factory } from '../factory/Factory'; export declare class FactoryAgent extends Factory { private instances; __constructor: { new (...arg: any[]): any; }; constructor(instances: Array>); get(arg: any): any; getFactory(classConstructor: new (arg: U, ...args: any[]) => T): (arg: U) => T; update(params: any): void; }