import * as React from 'react'; import './index.css'; type SegmentedControlItem = { label: React.ReactNode; value: string; disabled?: boolean; }; export type SegmentedControlProps = { readonly id?: string; readonly name?: string; readonly disabled?: boolean; readonly readonly?: boolean; readonly required?: boolean; readonly className?: string; readonly uniformSegmentWidth?: boolean; readonly fullWidth?: boolean; readonly value?: string; readonly defaultValue?: string; readonly data: string[] | SegmentedControlItem[]; readonly onChange?: (value: string) => void; }; declare const _default: React.MemoExoticComponent>>; export default _default; //# sourceMappingURL=index.d.ts.map