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;
