import { OnInit, EventEmitter } from '@angular/core'; import { Enums } from "../Enums"; import { LocalizationService } from "../services/LocalizationService"; import * as Models from "../../../models"; export interface IViewPortControlSettingsScope { viewPortSettingsType: Enums.ControlViewPortType; viewPort: string; controlViewPortTypes: Array; disableViewPort: boolean; selectType: (selectedType: Models.Shared.ILookupValue) => void; } export declare class ViewPortControlSettings implements OnInit { private localizationService; viewPortSettingsType: Enums.ControlViewPortType; viewPort: string; viewPortSettingsTypeChange: EventEmitter; viewPortChange: EventEmitter; static templateGuid: string; scope: IViewPortControlSettingsScope; constructor(localizationService: LocalizationService); ngOnInit(): void; private init; onViewPortChange: (valueChange: any) => void; private selectType; }