import { ReactNode } from 'react'; type Props = { options: { id: string; title: ReactNode; }[]; activeId: string; onChange: (value: string) => void; isVertical?: boolean; }; export declare const SegmentedControls: ({ activeId, options, onChange, isVertical, }: Props) => import("react/jsx-runtime").JSX.Element; export {};