import { IComponent } from "../../type/interface"; import { PojoType } from "../../type/type"; export default class InstanceBuilder { private interceptor; private fakeComponentCache; private static instanceCache; getFakeComponentFromCache(id: string): PojoType; createInstance(component: IComponent, fake?: boolean, idn?: string): PojoType; build(): void; }