import React from "react";
import type { Tab } from "../types/TabBarProps";
interface TabBarProps {
    tabs: Tab[];
}
declare const TabBar: React.FC<TabBarProps>;
export default TabBar;
