import React from 'react';
export interface Props extends React.HTMLAttributes<HTMLDivElement> {
    onClose: () => void;
    isOpen: boolean;
    onConfirm: () => void;
}
export declare function ConfirmModal({ onClose, isOpen, onConfirm }: Props): JSX.Element;
export default ConfirmModal;
