import { Plugin, Runner } from '@morjs/utils'; /** * 处理组件入参函数 */ export declare class ProcessComponentsPropsFunctionPlugin implements Plugin { name: string; entryBuilder: any; filePathIdentifier: string; needProcessList: any; processPropsObj: any; constructor(); apply(runner: Runner): void; isNeedProcess(options: any): any; addEntrySource(options: any): void; getEventName(attr: any): string; getPropsType(node: any): "String" | "Number" | "Object" | "Array" | "Function" | "Boolean"; }