import * as React from 'react'; import { DateAdapter } from '../models/adapter'; import { PickerDateType } from '../models/pickers'; export interface PickerContextValue { utils: DateAdapter; defaultDates: { minDate: PickerDateType; maxDate: PickerDateType; }; } export interface PickerProviderProps { children: React.ReactNode; /** * Date library adapter class function. */ dateAdapter?: new (...args: any) => DateAdapter; /** * Locale for the date library you are using */ locale?: string; } export declare const PickerContext: React.Context; export declare function PickerProvider({ children, dateAdapter: DateAdapter, locale }: PickerProviderProps): import("react/jsx-runtime").JSX.Element; export declare const usePickerContext: () => PickerContextValue;