import { type TabsProps } from '../types'; /** * __Tabs__ * * Tabs acts as a container for all Tab components. * * - [Examples](https://atlassian.design/components/tabs/examples) * - [Code](https://atlassian.design/components/tabs/code) * - [Usage](https://atlassian.design/components/tabs/usage) */ declare const Tabs: (props: TabsProps) => JSX.Element; export default Tabs;