export interface Brand { isSolmis: boolean; manufacturerId: number; brandName: string; brandId: number; } export type Brands = Brand[];