import React, { ReactChildren } from 'react'; import type { TabsProps as AntdTabsProps } from 'tntd/lib/tabs'; export interface TabsProps extends AntdTabsProps { children: ReactChildren; } export declare const Tabs: { ({ children, onChange, ...rest }: TabsProps): React.JSX.Element; TabPane: React.ClassicComponentClass; displayName: string; }; export default Tabs;