/** * @license * Copyright ASW (A Software World) All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file */ import { EventEmitter } from '@angular/core'; import { MatDialog } from '@angular/material/dialog'; import { MultiSelectControl } from './multi-select-control'; import * as i0 from "@angular/core"; export declare class AswMultiSelect { dialog: MatDialog; constants: any; /** * MultiSelect control */ control: MultiSelectControl | null; /** * MultiSelect control index to help update or delete button from drop area */ controlIndex: number; isPreviewTemplate: boolean; multiSelectUpdateEvent: EventEmitter<{ control: MultiSelectControl; index: number; }>; multiSelectDeleteEvent: EventEmitter; selectionChange: EventEmitter; duplicateControl: EventEmitter; constructor(dialog: MatDialog); deleteMultiSelectDialog(control: MultiSelectControl, controlIndex: number): void; editMultiSelectDialog(control: MultiSelectControl, controlIndex: number): void; onSelectionChange(control: MultiSelectControl): void; duplicateMultiSelectControl(control: MultiSelectControl): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }