pagamio-frontend-commons-lib
Version:
Pagamio library for Frontend reusable components like the form engine and table container
10 lines (9 loc) • 335 B
TypeScript
import 'react-datepicker/dist/react-datepicker.css';
import React from 'react';
interface CustomDateRangeModalProps {
isOpen: boolean;
onClose: () => void;
onApply: (startDate: string, endDate: string) => void;
}
declare const CustomDateRangeModal: React.FC<CustomDateRangeModalProps>;
export default CustomDateRangeModal;