import { ViewContainerRef } from '@angular/core'; import { Modal } from '../angular2-modal/providers/Modal'; import { ModalDialogInstance } from '../angular2-modal/models/ModalDialogInstance'; import { ICustomModalComponent } from '../angular2-modal/models/ICustomModalComponent'; import { ModalConfig } from '../angular2-modal/models/ModalConfig'; import * as i0 from "@angular/core"; export declare class ListSelectorDialog implements ICustomModalComponent { dialog: ModalDialogInstance; private modal; private viewRef; static dialogConfig: ModalConfig; itemsList: string[]; tipsList: string[]; buttonText: string; message: string; set height(v: any); set width(v: any); set title(v: any); set modelContentData(v: any); private selectedIndex; constructor(dialog: ModalDialogInstance, modal: Modal, viewRef: ViewContainerRef); /** * Show Me - show the list selector dialog and return a Promise */ show(list: string[], tips?: string[], message?: string, buttonLabel?: string): Promise; changeSelection(ev: any): void; ok($event: any): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }