export type BrandDomain = Readonly<{ label: string; href: string; }>; export type BrandListRowProps = Omit, "children"> & Readonly<{ href: string; linkComponent?: React.ElementType; name: string; brandDomain?: BrandDomain; onBrandDomainClick?: React.MouseEventHandler; category?: string; preview?: React.ReactNode; detailsLabel: string; }>; export type BrandListItem = Pick; export declare function BrandListRow({ href, linkComponent, name, brandDomain, onBrandDomainClick, category, preview, detailsLabel, className, ...rest }: BrandListRowProps): import("react").JSX.Element; export declare namespace BrandListRow { var displayName: string; } //# sourceMappingURL=BrandListRow.d.ts.map