import { GenericFreeFieldGroup } from "../generic"; import { PIMArticleArticleArticleSupplier } from "./articleSupplier"; import { PIMArticleArticleParentChild } from "./articleParentChild"; import { PIMArticleCategory } from "./category"; import { PIMArticleDisabledApp } from "./disabledApp"; import { PIMArticleBtwType } from "./btwType"; import { PIMArticleArticleStock } from "./articleStock"; export declare class PIMArticleArticle { publicId: string; articleCode: string; ean: string; description: string; isEnabled: boolean; sellPriceExclBtw: number; sellPriceInclBtw: number; buyPrice: number; unit: string; stockControl: boolean; subscriptionId: number; btwType: PIMArticleBtwType; disabledInApps: PIMArticleDisabledApp[]; categories: PIMArticleCategory[]; parents: PIMArticleArticleParentChild[]; childs: PIMArticleArticleParentChild[]; groupedFreeFields: GenericFreeFieldGroup[]; suppliers: PIMArticleArticleArticleSupplier[]; articleStock?: PIMArticleArticleStock; } //# sourceMappingURL=article.d.ts.map