/** * 跨组件调用属性控件注册的方法 */ declare class PropsUtils { private compPropsUtils; static instMap: Map; static initInst(currentInstId: string): PropsUtils; static getInst(currentInstId: string): PropsUtils | null | undefined; constructor(currentInstId: string); registerCompPropsData(compPropsId: string, data: any): void; getCompPropsData(compPropsId: string): any; unmountCompPropsData(compPropsId: string): void; } export declare const usePropsUtils: (props?: any) => { registerComp: (data: any, config?: { compId?: string | undefined; propsKey?: string | undefined; } | undefined) => void; getRegisterCompData: (config?: { compId?: string | undefined; propsKey?: string | undefined; } | undefined, key?: string) => any; }; export default PropsUtils;