/// import type { FontStyle, ViewStyle } from './types.js'; type Props = { value: string | number | object; tintColor?: string; onSelect: () => void; selected: boolean; enabled: boolean; fontStyle?: FontStyle; activeFontStyle?: FontStyle; tabStyle?: ViewStyle; appearance?: 'dark' | 'light' | null; }; export declare const SegmentedControlTab: ({ onSelect, value, enabled, selected, tintColor, fontStyle, activeFontStyle, appearance, tabStyle, }: Props) => JSX.Element; export {};