/// <reference types="react" />
import { TabbarProps } from "./tabbar";
import TabbarItem from "./tabbar-item";
interface TabbarInterface {
    (props: TabbarProps): JSX.Element;
    TabItem: typeof TabbarItem;
}
declare const Tabbar: TabbarInterface;
export default Tabbar;
