import { ComponentProps, ReactNode } from 'react'; export type SegmentedControlOption = { label: ReactNode; value: string; }; export type SegmentedControlProps = Omit, "children" | "ref"> & { autoFocus?: boolean; defaultValue?: string; disabled?: boolean; name?: string; onValueChange?: (value: string) => void; options: readonly SegmentedControlOption[]; tabIndex?: number; value?: string; }; export declare function SegmentedControl({ "aria-label": ariaLabel, autoFocus, className, defaultValue, disabled, name, onValueChange, options, tabIndex, value, ...props }: SegmentedControlProps): import("react").JSX.Element | null;