import { TabPanelProps } from './tab-panel.types'; /** * The card that hosts the content associated with a tab. * * ### 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 TabPanel: import('react').ForwardRefExoticComponent>; export default TabPanel;