import { SegmentedControlProps } from './segmented-control.types'; /** * A radio-group-based control that presents a set of mutually exclusive choices * as a row of equal-width segments with an animated thumb indicator that slides * to the selected item. * * Supports controlled and uncontrolled usage, keyboard navigation (arrow keys, * Home/End, Space/Enter), full-width layout, two sizes (`md` and `sm`), * read-only and disabled states, icon-only segments, and native form * participation via hidden radio inputs. * * @example * ```tsx * console.log(value)} * /> * ``` */ declare const SegmentedControl: import('react').ForwardRefExoticComponent>; export default SegmentedControl;