import type { CompCreatorType, ComponentGroup } from '../interfaces/types'; export interface useCompCreatorsType { compList?: ComponentGroup[]; isMobile: boolean; fusionMode: any; } export declare const getCompCreator: (compName: string, isMobile?: boolean, platform?: string, context?: any) => (({ props, ...restConfigs }: { [x: string]: any; props?: {} | undefined; }) => any) | null; declare const useCompCreators: ({ compList, isMobile, fusionMode }: useCompCreatorsType) => { compCreators: () => CompCreatorType; }; export default useCompCreators;