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