export declare class ItemList { name?: string; specification?: string; unit?: string; quantity?: string; private 'unit_price'?; private 'license_plate_number'?; amount?: string; private 'tax_rate'?; tax?: string; private 'end_date'?; private 'start_date'?; private 'vehicle_type'?; constructor(); withName(name: string): ItemList; withSpecification(specification: string): ItemList; withUnit(unit: string): ItemList; withQuantity(quantity: string): ItemList; withUnitPrice(unitPrice: string): ItemList; set unitPrice(unitPrice: string | undefined); get unitPrice(): string | undefined; withLicensePlateNumber(licensePlateNumber: string): ItemList; set licensePlateNumber(licensePlateNumber: string | undefined); get licensePlateNumber(): string | undefined; withAmount(amount: string): ItemList; withTaxRate(taxRate: string): ItemList; set taxRate(taxRate: string | undefined); get taxRate(): string | undefined; withTax(tax: string): ItemList; withEndDate(endDate: string): ItemList; set endDate(endDate: string | undefined); get endDate(): string | undefined; withStartDate(startDate: string): ItemList; set startDate(startDate: string | undefined); get startDate(): string | undefined; withVehicleType(vehicleType: string): ItemList; set vehicleType(vehicleType: string | undefined); get vehicleType(): string | undefined; } //# sourceMappingURL=ItemList.d.ts.map