import { type FC } from 'react'; import type { DateFieldState, DateSegment } from '@react-stately/datepicker'; interface TemporalSegmentProps { segment: DateSegment; state: DateFieldState; disabled?: boolean; readOnly?: boolean; /** Override the displayed text (from TemporalSegmentGroup normalization). */ displayOverride?: string; } export declare const TemporalSegment: FC; export {};