import React from 'react'; import { ViewStyle, TextStyle, ColorValue, StyleProp } from 'react-native'; export interface SegmentedMenuItem { key: string | number; label: string | React.ReactNode; } export interface SegmentedMenuProps { items: SegmentedMenuItem[]; index?: number; defaultIndex?: number; onChange?: (key: string | number, index: number) => void; setIndex?: (index: number) => void; color?: ColorValue; selectColor?: ColorValue; lineColor?: ColorValue; lineSize?: number; indicatorVariant?: 'line' | 'background'; indicatorStyle?: StyleProp; edge?: number; fontSize?: number; animatedDuration?: number; style?: StyleProp; styleInner?: StyleProp; itemStyle?: StyleProp; selectedTextStyle?: StyleProp; selectedItemStyle?: StyleProp; selectStyle?: StyleProp; testID?: string; } declare const SegmentedMenu: React.FC; export default SegmentedMenu; //# sourceMappingURL=SegmentedMenu.d.ts.map