import { MmUIComponent } from './component' /** Popconfirm component */ export declare class MmPopconfirm extends MmUIComponent { /** The description of the confirmation box */ title: string /** Click the confirm callback */ onConfirm(e: Event): void /** Click the cancel callback */ onCancel(e: Event): void /** Confirm button text */ okText: string /** Cancel button text */ cancelText: string /** Confirm button type */ okType: string }