import { DestroyRef, OnDestroy, OnInit, TemplateRef } from '@angular/core'; import { MatDialogRef } from '@angular/material/dialog'; import { ThemePalette } from '@angular/material/core'; import { Observable } from 'rxjs'; import { UnsubscribeService } from '../base/services/unsubscribe.service'; import { ButtonStyle } from '../base/consts/buttons.consts'; import { EcabsComponentsService, Ecabsi18n } from '../base/services/ecabs-components.service'; import * as i0 from "@angular/core"; export declare class EcabsDialogConfirmComponent implements OnInit, OnDestroy { data: EcabsDialogConfirmComponentConfig; dialogRef: MatDialogRef; private readonly unsubscribeService; private readonly componentsService; private readonly destroyRef; message: string; color: ThemePalette; constructor(data: EcabsDialogConfirmComponentConfig, dialogRef: MatDialogRef, unsubscribeService: UnsubscribeService, componentsService: EcabsComponentsService, destroyRef: DestroyRef); translations: Ecabsi18n; ngOnInit(): void; ngOnDestroy(): void; closeDialog(): void; closeFalsey(): void; closeOnPopover(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export interface EcabsDialogConfirmComponentConfig { title?: string; titleTemplate?: TemplateRef>; message?: TemplateRef>; color?: ThemePalette; titleColor?: ThemePalette; confirmLabel?: string; confirmStyle?: ButtonStyle; confirmResult?: any; cancelLabel?: string; cancelStyle?: ButtonStyle; cancelResult?: any; hideCtaButtons?: boolean; hideConfirmButton?: boolean; hideCancelButton?: boolean; isPopover?: boolean; popoverResult?: any; content?: string; useFullButtonSize?: boolean; splitButtonsWidth?: boolean; loading$?: Observable; disableConfirm$?: Observable; }