import * as React from 'react'; import type { SegmentedControlProps } from './types.js'; /** * SegmentedControl * iOS 13 Style UISegmentedControl Component for Android and Web */ declare const SegmentedControl: ({ style, onChange, onValueChange, enabled, selectedIndex, values, tintColor, backgroundColor, tabStyle, fontStyle, activeFontStyle, appearance, }: SegmentedControlProps) => React.ReactNode; export default SegmentedControl;