declare type DragType = 'rows-container' | 'cols-container' | 'col-item' | 'row-item'; /** * 构建所有组件的公共属性 * @param config 原始config * @param dragType 组件模式 * 不填,代表不能在设计时被拖拽 * row-container 是一个rows容器 * col-container 是一个cols容器 * col-item cols中的一个格子(非容器),比如 textfield / combofield 等等 * row-item rows中的一行,比如 tree / grid / panel 等等 */ export declare function baseConfig(config: any, dragType?: DragType): any; export {};