import { ReactElement } from 'react'; import { TabsProps } from './tabs'; import { TabPaneProps, TabPaneType } from './tab-pane'; interface TabContentProps extends Pick { prefixCls: string; paneChildren: ReactElement[]; } export default function TabContent(props: TabContentProps): JSX.Element; export {};