import { Structure } from '../Structure'; import { Style } from '../Style'; import { Component } from './index'; import { Panel } from '../../../sketch-dsl/src'; /** * 基础组件 */ export interface BaseComponent { id?: string; type?: string; name?: string; structure?: Structure; style?: Style; children?: Component[]; value?: string; panel?: Panel; symbolName?: string; }