1 | import { Animated, ViewProps } from 'react-native';
|
2 | import { RneFunctionComponent } from '../helpers';
|
3 | declare const TabViewItem: RneFunctionComponent<ViewProps>;
|
4 | export declare type TabViewProps = {
|
5 | value?: number;
|
6 | onChange?: (value: number) => any;
|
7 | animationType?: 'spring' | 'timing';
|
8 | animationConfig?: Omit<Animated.SpringAnimationConfig & Animated.TimingAnimationConfig, 'toValue'>;
|
9 | };
|
10 | declare const TabView: RneFunctionComponent<TabViewProps>;
|
11 | interface TabView extends RneFunctionComponent<TabViewProps> {
|
12 | Item: typeof TabViewItem;
|
13 | }
|
14 | declare const TabViewComponent: TabView;
|
15 | export default TabViewComponent;
|