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