import { OnInit, EventEmitter, OnChanges, SimpleChanges, ElementRef } from '@angular/core'; import { Dialog } from './luci-dialog.model'; export declare class LuciDialogComponent implements OnInit, OnChanges { private el; isOpen: boolean; dialog: Dialog; isExtTemplate: boolean; isFooter: boolean; smallHeadline: boolean; close: EventEmitter; cancelLabel: string; ActionLabel: string; isActionDisabled: boolean; isCloseTemplate: boolean; isCancelActionDisabled: boolean; isBackDrop: boolean; isNonModal: boolean; dragging: HTMLElement; mouseMove(event: any): void; mousedown(event: any): void; mouseup(event: any): void; constructor(el: ElementRef); ngOnInit(): void; resolveDialog(): void; cancelDialog(): void; ngOnChanges(changes: SimpleChanges): void; }