import { ReactNode, FC } from "react"; export interface ConfirmDialogProps { title: ReactNode; open: boolean; loading: boolean; onClose: () => void; onConfirm: () => void; cancelText?: ReactNode; confirmText?: ReactNode; } export declare const ConfirmDialog: FC;