import { IManager, IModule } from '../types';
export declare class Manager implements IManager {
    protected module: IModule;
    protected importName: string;
    protected original: any;
    constructor(module: IModule, importName: string);
    restore(): void;
}
