import React from 'react'; import './index.css'; export interface SegmentedItem { label: string; value: string; } export interface SegmentedProps { items: SegmentedItem[]; value?: string; onChange?: (value: string) => void; } declare const Segmented: React.FC; export default Segmented; //# sourceMappingURL=index.d.ts.map