import TabPane from "./tab-pane"; import { type TabsProps } from "./tabs"; import type { TabEvent as SharedTabEvent } from "./tabs.shared"; export type { TabThemeVars } from "./tabs.shared"; interface TabsInterface { (props: TabsProps): JSX.Element; TabPane: typeof TabPane; } declare const Tabs: TabsInterface; declare namespace Tabs { type TabEvent = SharedTabEvent; } export default Tabs;