import { ConfirmType } from '../dialog.types'; export declare class ConfirmDialogConfig { title: string; content?: string; cancelButton?: boolean; confirmType?: ConfirmType; confirmText?: string; cancelText?: string; beforeConfirm?: (reslove: () => void, reject: () => void) => void; beforeCancel?: (reslove: () => void, reject: () => void) => void; }