/// import { TabItem } from './Tabs'; export declare type TabContentProps = { tabList?: TabItem[]; activeTabKey?: string; destroyHiddenPane?: boolean; prefixCls?: string; }; export default function TabContent({ prefixCls, tabList, activeTabKey, destroyHiddenPane }: TabContentProps): JSX.Element;