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