import { IObject } from '../interface'; declare const defaultDevUi: { toolbar: {}; table: {}; form: {}; query: {}; }; /** * 全局布局状态 * @param model 业务扩展的model */ export declare function layoutModel(model: any): any; export declare const updateItemsKey: unique symbol; export declare const updateItemStatusKey: unique symbol; /** * * @param type 元数据类型 * @param id 组件id或者业务类型(内嵌查询) * @param props 当前组件合并前的属性 * @param itemsKey 子组件集合的key * @param itemKey 子组件的key * @param items 子组件的状态集合,可选,优先级高于props[itemsKey] * @returns */ export declare function useDevState

({ type, id, props, itemsKey, itemKey, items }: { type: keyof typeof defaultDevUi; id?: string; props: P; itemsKey?: string; itemKey: string; items?: IObject[]; }): [P, T[]]; export {};