import React from 'react'; import { LingXiEdFC } from '@lingxiteam/types'; interface ContainerDropBoxProps extends React.HTMLProps { _component: any; canDrag?: boolean; } export interface MyRowEDProps { ContainerDropBox: React.FC; _component: any; style?: React.CSSProperties; colSpan: number; gutterVertical: number; gutterHorizontal: number; children?: React.ReactNode[]; backgroundType?: any; } declare const MyRowED: LingXiEdFC; export default MyRowED;