export interface StockModel { id: string; typeName: string; storeId: string; name: string; description: string; parentId: string; taxId: string; uom: UnitOfMesureEnum; ts: string; updateTs: string; variants: VariantModel[]; } export interface VariantModel { ref: string; types: VariantTypeValue[]; name: string; description: string; qty: number; price: number; gs1: string; cover: string; characteristics: VariantCharacteristicModel; location: string; } export interface VariantCharacteristicModel { weigh: number; length: number; width: number; height: number; } export interface VariantTypeValue { id: string; value: string; } export declare enum UnitOfMesureEnum { kg = "kg", g = "g", l = "l", ml = "ml", cm = "cm", m = "m", unit = "unit" }