import { ReactNode } from 'react'; interface IConfirmDeleteModalProps { onClose: () => void; onConfirm: () => void; isOpen: boolean; documentTitle: string; isLoading: boolean; text?: string | ReactNode; title?: string; overlayClasses?: string; noOverlay?: boolean; primaryLabel?: string; secondaryLabel?: string; hasCloseIcon?: boolean; hideTitleIcon?: boolean; } export declare const ConfirmDeleteModal: ({ onClose, onConfirm, isOpen, isLoading, title, overlayClasses, noOverlay, hasCloseIcon, primaryLabel, hideTitleIcon, }: IConfirmDeleteModalProps) => import("react/jsx-runtime").JSX.Element; export {};