import { TabItem, TabPanelProps, TabPosition, TabType, TabsProps } from "./types.js"; import { Tabs } from "./tabs.js"; import { TabPanel } from "./tab-panel.js"; //#region src/tabs/index.d.ts type ITabs = typeof Tabs & { Panel: typeof TabPanel; }; declare const DefaultTabs: ITabs; //#endregion export { DefaultTabs }; //# sourceMappingURL=index.d.ts.map