react-native-easy-calendar
Version:
Customizable, easy-to-use, performant calendar components for React Native
10 lines (9 loc) • 348 B
TypeScript
import React from 'react';
import type { WrapperCalendarProps } from '../Entities';
interface SpecificProps {
onSelectDates: (dates: string[]) => void;
selectedDates: string[];
}
declare type Props = SpecificProps & WrapperCalendarProps;
declare const MultiDateSelectionCalendar: React.FC<Props>;
export default MultiDateSelectionCalendar;