export declare class PropForm { props: Array; propsObject: any; unitsMap: any; constructor(); /** * 将key构造进对象结构 * */ formatObject(): void; } export declare class PropItem { key: string; label: string; value: any; component: string; unit: string; constructor(key: string, label: string, component: string, value: any, unit?: string); }