import { IModule } from '../types'; import { Manager } from './manager'; export declare class OtherManager extends Manager { protected module: IModule; protected importName: string; protected original: T; private replaceWith; constructor(module: IModule, importName: string, replaceWith?: Partial); set(replaceWith: Partial): void; getValue(): Partial; private replace; }