import { type DateCellProps } from '../../../shared/DateCell'; export type DateRangePickerDateCellProps = DateCellProps & { /** Whether this date is the start of a range */ isRangeStart?: boolean; /** Whether this date is the end of a range */ isRangeEnd?: boolean; }; /** * DateRangePicker-specific DateCell component with enhanced accessibility * for Japanese users. Provides configurable labels and range-specific context. */ export declare function DateRangePickerDateCell({ date, selected, inRange, disabled, isRangeStart, isRangeEnd, ...rest }: DateRangePickerDateCellProps): import("react/jsx-runtime").JSX.Element;