import { DynamicComponentGroup } from '../../../../utils/types'; export interface DynamicComponentType { id?: string; componentName: string; label: string; value: string; type: string; operateType?: string; description?: string; dataTypes?: Array; defaultPropertys?: Record; propertys?: Array>; events?: Array; group: DynamicComponentGroup; formItem: boolean; restrictChild?: string; restrictParent?: string; isShow: boolean; preview?: string; inline?: boolean; isCustom?: boolean; icon?: string; slots?: Array; excludeFromResult?: boolean; }