interface Props { isOpen: boolean; onClose: () => void; onConfirm: () => void; headerTitle?: string; bodyText?: string; cancelButtonTitle?: string; exitButtonTitle?: string; } /** * ConfirmCloseAlert: DiÔlogo de confirmación para cerrar el modal. * Utiliza Radix AlertDialog en lugar de Chakra AlertDialog. */ export declare const ConfirmCloseAlert: ({ isOpen, onClose, onConfirm, headerTitle, bodyText, cancelButtonTitle, exitButtonTitle }: Props) => import("react/jsx-runtime").JSX.Element; export {};