import { Component } from 'react'; export default interface BottomNavigationProps { prefixCls?: string; unselectedTintColor?: string; tintColor?: string; barTintColor?: string; tabBarPosition?: string; data?: any; } /** * 底部导航栏 */ export default class BottomNavigationView extends Component { static defaultProps: { unselectedTintColor: string; tintColor: string; barTintColor: string; tabBarPosition: string; }; render(): JSX.Element; }