ui/components/Modal/ModalFooter.d.ts

8 lines
194 B
TypeScript
Raw Normal View History

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