import { TabProps } from './tab.types'; /** * The tab element itself. * Clicking on a tab displays its corresponding panel. * * ### Usages * * ```tsx * import { Tabs, TabList, Tab, TabPanel } from '@bloomreach/react-banana-ui'; * * export default function MyCustomComponent() { * return ( * * * Tab 1 * Tab 2 * }>Tab 3 * * Tab 1 content * Tab 2 content * Tab 3 content * * ); * } * ``` */ declare const Tab: import('react').ForwardRefExoticComponent>; export default Tab;