import { VariationGroupValue } from "./variationGroupValue"; /** * Represents a variation group. */ export declare class VariationGroup { /** * The public id of the variation group. */ publicId: string; /** * The free field that groups the articles in this variation group. */ freeField: string; /** * The name of the variation group. */ name: string; /** * The articles that are part of this variation group. */ values: VariationGroupValue[]; } //# sourceMappingURL=variationGroup.d.ts.map