import type { TabsProps } from 'antd/es/tabs'; import React from 'react'; export interface MyTabsProps extends TabsProps { value: string; visible: boolean; getEngineApis: any; } declare const MyTabs: React.ForwardRefExoticComponent>; export default MyTabs;