import { ReactElement } from 'react'; import { UseTabsProps } from './use-tabs.js'; import '@heroui/system'; import '@heroui/theme'; import '@heroui/react-utils'; import '@react-stately/tabs'; import '@react-aria/tabs'; import '@heroui/aria-utils'; interface Props extends UseTabsProps { } type TabsProps = Props; declare const Tabs: (props: TabsProps) => ReactElement; export { type TabsProps, Tabs as default };