import type { HTMLProps, CSSProperties } from 'react';
import type { Base } from '@/components/types';
export interface ContainerDropBoxProps extends HTMLProps {
_component: any;
canDrag: boolean;
}
export interface ViewLayoutProps extends Base {
ContainerDropBox?: React.FC;
_component?: any;
children?: React.ReactNode[];
style?: CSSProperties;
backgroundType?: any;
appId?: string;
getEngineApis?: any;
}