import type { DateFieldState, TimeFieldState } from '@react-stately/datepicker'; import type { GroupDOMAttributes } from '@react-types/shared'; export interface TemporalSegmentGroupProps extends GroupDOMAttributes { state: DateFieldState | TimeFieldState; disabled?: boolean; readOnly?: boolean; className?: string; segmentKeyPrefix?: string; } export declare const TemporalSegmentGroup: import("react").ForwardRefExoticComponent>;