import { Attribute, AttributeEntity, AttributeValueEntity } from '../models'; export declare class AttributeUtil { static getAttribute(attributeId: string, attributes: Attribute[], code?: string): Attribute | undefined; static getAttributeValue(attributeId: string, attributes: Attribute[]): string | undefined; static setAttributeValue(attributes: Attribute[], attribute: string, value: string | number, code?: string): Attribute[]; static getAttributeEntities(attributes: Attribute[]): AttributeEntity; static getAttributeValueEntities(attributes: Attribute[]): AttributeValueEntity; static sanitizeAttributes(attributes: Attribute[]): Attribute[]; }