export interface ReceptionData { id: number licensePlate: string | null weights?: WeightEntryData[] | null receptionDate: string currentStep: number isValid: boolean } export interface WeightEntryData { id?: number type: 'gross' | 'tare' dsd: number | null weight: number | null weighedAt: string | null }