import React from 'react'; import { ViewStyle } from 'react-native'; export interface SegmentedTab { key: string; label: string; themeColor?: string; color?: string; icon?: (isActive: boolean, themeColor?: string) => React.ReactNode; } interface SegmentedTabsProps { tabs: SegmentedTab[]; activeKey: string; onChange: (key: string) => void; style?: ViewStyle | ViewStyle[]; scrollable?: boolean; } export declare const DEFAULT_INNER_TAB_THEMES: Record; declare const SegmentedTabs: React.MemoExoticComponent<({ tabs, activeKey, onChange, style, scrollable }: SegmentedTabsProps & { scrollable?: boolean; }) => React.JSX.Element>; export default SegmentedTabs;