import * as React from 'react'; import { Locale } from 'date-fns'; export declare const DatepickerContext: React.Context<{ onHide?: (keyboardEventKey?: string) => void; onShow?: VoidFunction; locale?: Locale; }>; export declare const useDatepickerContext: () => { onHide?: (keyboardEventKey?: string) => void; onShow?: VoidFunction; locale?: Locale; };