import { ComponentInterface, EventEmitter } from '../../stencil-public-runtime'; import type { ModalProps } from '../BaseModal/modal-interface'; export declare class BiDialog implements ModalProps, ComponentInterface { /** * If true, clicking on the backdrop will not close the dialog. */ disableBackdropClick: boolean; /** If true, the dialog is open. */ isOpen: boolean; /** * The background color of the dialog. Can be 'white' or 'blue-strong'. */ backgroundColor?: 'white' | 'blue-strong'; /** By default, a padding is applied to the content. This option removes that padding. */ removePadding?: boolean; /** Event emitted when the dialog is closed. */ close: EventEmitter; render(): any; }