import { Animated, ViewProps } from 'react-native'; import { RneFunctionComponent } from '../helpers'; declare const TabViewItem: RneFunctionComponent; export declare type TabViewProps = { value?: number; onChange?: (value: number) => any; animationType?: 'spring' | 'timing'; animationConfig?: Omit; }; declare const TabView: RneFunctionComponent; interface TabView extends RneFunctionComponent { Item: typeof TabViewItem; } declare const TabViewComponent: TabView; export default TabViewComponent;