import React from 'react';
import { Animated, StyleProp, TextStyle, ViewProps, ViewStyle } from 'react-native';
interface TabBarItemProps {
    title: string;
    onPress?: () => void;
    onLayout: ViewProps['onLayout'];
    style?: StyleProp<ViewStyle>;
    labelStyle?: Animated.WithAnimatedObject<TextStyle> | Animated.WithAnimatedArray<StyleProp<TextStyle>>;
}
declare const _default: React.MemoExoticComponent<({ style, labelStyle, title, onLayout, onPress }: TabBarItemProps) => JSX.Element>;
export default _default;
//# sourceMappingURL=TabBarItem.d.ts.map