import React, { FC } from 'react'; declare type Props = { children?: React.ReactNode; onConfirm?: () => void; onCancel: () => void; confirmText?: string; cancelText?: string; }; declare const ModalContent: FC; export default ModalContent;