import { EventEmitter } from '../../stencil-public-runtime'; export declare class cConfirm { animation: any; backdropaAnimation: any; buttonsForRender: any[]; defaultButtonsForRender: { attributes: { type: string; expand: boolean; disable: boolean; }; role: string; text: string; }[]; event: any; color: string; isOpen: boolean; backdropDismiss: boolean; title: string; subTitle: string; message: string; buttons: any; parent: any; el: HTMLElement; willPresent: EventEmitter; didPresent: EventEmitter; willDismiss: EventEmitter; didDismiss: EventEmitter; isOpenChanged(): Promise; componentWillLoad(): void; componentDidLoad(): void; componentDidUpdate(): void; disconnectedCallback(): void; showAnimation(): void; onClickBackdropBtn(): Promise; onClickCancelButton(e: any): Promise; onClickConfirmButton(e: any): Promise; close(): Promise; handleButtons(): void; render(): any; }