UNPKG

react-day-picker

Version:

Customizable Date Picker for React

9 lines (8 loc) 334 B
import React from 'react'; import { DayPickerBase } from '../types/DayPickerBase'; /** The props of [[RootProvider]]. */ export declare type RootContext = DayPickerBase & { children: React.ReactNode; }; /** Provide the value for all the context providers. */ export declare function RootProvider(props: RootContext): JSX.Element;