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