import React from 'react'; type Option = { id: string; label: string; }; type Size = 'medium' | 'large'; type Props = { selectedId: string; options: Option[]; onClick?: (event: React.MouseEvent, id: string) => void; size?: Size; }; export declare const SegmentedControl: React.FC; export {}; //# sourceMappingURL=SegmentedControl.d.ts.map