import { TabsProps } from 'antd'; import React from 'react'; import { LingXiEdFC } from '@lingxiteam/engine-types/es'; interface ContainerDropBoxProps extends React.HTMLProps { _component: any; canDrag?: boolean; } export interface MyTabsEDProps extends TabsProps { ContainerDropBox: React.FC; _component: any; style?: React.CSSProperties; name?: string; className?: string; id?: string; children: React.ReactElement[]; activeTabKey?: string; defaultActiveKey?: string; selectCurrentContainer: () => void; forwardRef?: any; customExtraHeader?: boolean; } declare const MyTabsED: LingXiEdFC; export default MyTabsED;