import { FC, PropsWithChildren } from 'react'; interface ITabPaneProps { id?: string; activeKey?: string; key: string; tab: string; } declare const TabPane: FC>; export default TabPane;