import { FC, PropsWithChildren } from 'react'; import TabPane from './TabPane'; interface ITabsProps { className?: string; defaultActiveKey?: string; activeKey?: string; animated?: boolean; scroll?: boolean; onChange?: (key: string) => void; } declare const Tabs: FC> & { TabPane: typeof TabPane; }; export default Tabs;