import type { PropsWithChildren } from "react"; import React from "react"; interface SegmentedControlOptionProps extends PropsWithChildren { /** * The unique value associated with this option. This value is used to determine * which option is selected and is passed to the onSelectValue callback. */ readonly value: TValue; /** * An aria-label that describes the option. */ readonly ariaLabel?: string; } export declare function SegmentedControlOption({ value, children, ariaLabel, }: SegmentedControlOptionProps): React.JSX.Element; export {};