import React from 'react'; import { LingXiEdFC } from '@lingxiteam/types'; interface ContainerDropBoxProps extends React.HTMLProps { _component: any; canDrag: boolean; } export interface MyFreeLayoutEDProps { ContainerDropBox: React.FC; children: any; style: React.CSSProperties; _component: any; backgroundType?: any; canDrag?: boolean; } declare const FreeLayoutED: LingXiEdFC; export default FreeLayoutED;