UNPKG

react-native-dates-picker

Version:
18 lines 786 B
/// <reference types="react" /> import { CalendarThemeProps, IDayObject } from '../types'; export declare const daySize = 46; interface Props extends Omit<IDayObject, 'day'> { isToday: boolean; isSelected: boolean; onSelectDate: (date: string) => void; theme: CalendarThemeProps; height?: number; } declare function EmptyDayPure({ height }: { height?: number; }): JSX.Element; export declare const EmptyDay: import("react").MemoExoticComponent<typeof EmptyDayPure>; declare function Day({ date, text, disabled, isCurrentMonth, isToday, isSelected, inRange, leftCrop, rightCrop, onSelectDate, theme, height, }: Props): JSX.Element; declare const _default: import("react").MemoExoticComponent<typeof Day>; export default _default; //# sourceMappingURL=Day.d.ts.map