export interface ArrayStatus { id?: number; name?: string; color?: string; hidden?: boolean; avatar?: string; isSelected?: boolean; currentSet?: boolean; icon?: string; truckNumber?: string; trailerNumber?: string; trailerType?: TrailerType; activeIcon?: string; image?: string; truckType?: TruckType; stateName?: string; stateShortName?: string; count?: number; logoName?: string | null; title?: string | null; logo?: string | null; subFolder?: string; logoType?: string; } interface TruckType { companyId?: string; id?: number; logoName?: string; name?: string; } interface TrailerType { companyId?: string; id?: number; logoName?: string; name?: string; }