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