///
import React from 'react';
import { ImageRequireSource, ImageStyle, ImageURISource, StyleProp } from 'react-native';
export interface TabBarItemProps {
badge?: string | number;
onPress?: () => void;
selected?: boolean;
icon?: ImageURISource | ImageURISource[] | ImageRequireSource;
selectedIcon?: ImageURISource | ImageURISource[] | ImageRequireSource;
title: string;
tintColor?: string;
unselectedTintColor?: string;
iconStyle?: StyleProp;
renderAsOriginal?: boolean;
styles?: any;
}
export default class TabBarItem extends React.Component {
static defaultProps: {
onPress(): void;
};
render(): JSX.Element;
}