import { type DatePickerDateCellProps } from './DatePickerDateCell.types'; /** * DatePickerDateCell is a wrapper component around the shared DateCell component. * It adds DatePicker-specific keyboard navigation and context integration. * * This component is used internally by the DatePicker component. * * @param props - The component props */ export declare function DatePickerDateCell({ date, selected, disabled, onKeyDown, ...otherProps }: DatePickerDateCellProps): import("react/jsx-runtime").JSX.Element;