import { FreeField } from "~/types/freeField"; /** * Represents a variation article. */ export declare class VariationArticle { /** * The image of the article. */ image?: string; /** * The public id of the article. */ publicId: string; /** * The description of the article */ description: string; /** * The free fields of the article. */ freeFields: FreeField[]; } //# sourceMappingURL=variationArticle.d.ts.map