import React from 'react'; import type { OnSelect, PartialMode } from './OcPicker.types'; export declare type ContextOperationRefProps = { onKeyDown?: (e: React.KeyboardEvent) => boolean; onClose?: () => void; }; export declare type PartialContextProps = { operationRef?: React.MutableRefObject; /** Only work with time partial */ hideHeader?: boolean; partialRef?: React.Ref; hidePrevBtn?: boolean; hideNextBtn?: boolean; onDateMouseEnter?: (date: any) => void; onDateMouseLeave?: (date: any) => void; onSelect?: OnSelect; hideRanges?: boolean; open?: boolean; mode?: PartialMode; trapFocus?: boolean; }; declare const PartialContext: React.Context; export default PartialContext;