import { type TabbarProps } from "./tabbar"; import TabbarItem from "./tabbar-item"; export type { TabbarThemeVars } from "./tabbar.shared"; interface TabbarInterface { (props: TabbarProps): JSX.Element; TabItem: typeof TabbarItem; } declare const Tabbar: TabbarInterface; export default Tabbar;