import { EventEmitter } from '../../stencil-public-runtime'; export declare class Dialog { /** * 标题 */ titles: string; /** * 内容 */ content: string; /** * 点击背景是否关闭 */ maskClosable: boolean; /** * 是否有默认的X关闭按钮 */ closeX: boolean; /** * 底部按钮 */ footer: string; /** * 显示隐藏 */ visible: boolean; /** * 样式 */ effect: 'zoom' | 'fadeIn'; /** * 定时关闭 */ duration: number; /** * 类型 */ type: string; placeholder: string; $buttons: any; $el: HTMLElement; vdestory: EventEmitter; okHandle: EventEmitter; display(): Promise; destory(item: any): Promise; watchHandler(newValue: boolean): void; componentDidLoad(): void; componentWillLoad(): void; bindDuration(): void; renderContent(): any; render(): any; /** * 以服务的形式调用 */ init(option: any): Promise; }