import type { ReactElement } from 'react'; import type { TabEvents, TabProps } from './Tab.js'; type TabPosition = 'TOP' | 'LEFT'; interface TabsProps extends TabEvents { children: Array | boolean>; activeTab: string; position?: TabPosition; } declare function Tabs({ children, onClick, position, onDelete, activeTab, }: TabsProps): import("@emotion/react/jsx-runtime").JSX.Element; declare const _default: import("react").MemoExoticComponent; export default _default; //# sourceMappingURL=Tabs.d.ts.map