import { default as React, ReactNode } from 'react'; export interface SegmentedControlItemProps extends React.ComponentPropsWithoutRef<'button'> { /** * Specify the value of the item */ value: string; /** * Specify the text of the item */ children?: ReactNode; /** * Specify if this item is disabled */ disabled?: boolean; /** * Specify an icon for the item */ icon?: ReactNode; } export declare const SegmentedControlItem: ({ value, children, "disabled": _disabled, icon, "aria-label": ariaLabel, "className": _className, ...props }: SegmentedControlItemProps) => import("react/jsx-runtime").JSX.Element;