export declare class CreateInventoryDto { productId: number; quantity: number; unit: string; location?: string; purchaseDate?: string; bestBeforeDate?: string; brand?: string; origin?: string; receiptName?: string; opened?: boolean; suitableFor?: string; comment?: string; }