export interface StorefrontBrandImage {
  src: string;
  thumbnail?: string;
  alt?: string;
}

export interface StorefrontBrandItem {
  id: number;
  name: string;
  slug: string;
  href?: string;
  image?: StorefrontBrandImage;
}
