import { EventEmitter, Injector } from '@angular/core'; import { ConfigureComponentBase } from '../../../../../../../shared/configure-component-base'; import { DataSourceDto, VariableServiceProxy } from '../../../../../../../shared/service-proxies/service-proxies'; import { AutoRenameTypeEnum } from '../auto-rename-type-enum'; import { BsModalRef } from 'ngx-bootstrap'; export declare class RenameVariableModalComponent extends ConfigureComponentBase { private readonly variableService; private readonly bsModalRef; importEvent: EventEmitter; configureId: number; refVariableIdList?: number[]; active: boolean; importing: boolean; dataSource: DataSourceDto; enumAutoRenameType: typeof AutoRenameTypeEnum; selectedRenameRule: AutoRenameTypeEnum; constructor(injector: Injector, variableService: VariableServiceProxy, bsModalRef: BsModalRef); import(): void; close(): void; }