import { Serializable } from "@js-soft/ts-serval"; export interface IAttributeTagCollection { supportedLanguages: string[]; tagsForAttributeValueTypes: Record>; } export interface IAttributeTag { displayNames: Record; children?: Record; } export declare class AttributeTagCollection extends Serializable implements IAttributeTagCollection { supportedLanguages: string[]; tagsForAttributeValueTypes: Record>; static from(value: IAttributeTagCollection): AttributeTagCollection; } export declare class AttributeTag extends Serializable implements IAttributeTag { displayNames: Record; children?: Record; } //# sourceMappingURL=AttributeTagCollection.d.ts.map