import React from 'react'; import { TabBar as ITabBar } from '@ray-js/types'; import { renderOptions } from '../../store/appStore'; type TabBarProps = { config: ITabBar; basename?: string; }; export declare class TabBar extends React.Component { unChangeHandle: () => void; unAppStoreChange: () => void; state: { currentRoute: string; renderOptions: { tabBarVisible: boolean; tabBarAnimation: boolean; }; }; componentDidMount(): void; componentWillUnmount(): void; render(): React.JSX.Element; } export {};