import { PropsSection } from '../core'; /** * 对应解析器分析出的一些关键信息 */ export interface IPropType { name: string; type: string; value?: IPropTypes; required: boolean; } export declare type IPropTypes = IPropType[]; export interface IMaterialParsedModel { componentName: string; props?: PropsSection['props']; meta?: { exportName?: string; subName?: string; }; }