import { TAttributeValue } from '@cromwell/core'; import { Attribute } from './attribute.entity'; import { BasePageEntity } from './base-page.entity'; import { AttributeToProduct } from './attribute-product.entity'; export declare class AttributeValue extends BasePageEntity implements TAttributeValue { attributeId: number; attribute?: Attribute; key: string; value: string; title?: string; icon?: string; attributeToProduct?: AttributeToProduct[]; } //# sourceMappingURL=attribute-value.entity.d.ts.map