import React from 'react';
interface ModalFooterProps {
onAccept: () => void;
onDecline: () => void;
}
declare const ModalFooter: React.FC<ModalFooterProps>;
export default ModalFooter;