import { PersonalizationAdapter } from '../utils'; import { ImportConfig } from '../types'; export default class Attribute extends PersonalizationAdapter { readonly config: ImportConfig; private mapperDirPath; private attrMapperDirPath; private attributesUidMapperPath; private attributesUidMapper; private personalizeConfig; private attributeConfig; constructor(config: ImportConfig); /** * The function asynchronously imports attributes from a JSON file and creates them in the system. */ import(): Promise; }