import React from 'react'; import { IconDefinition } from '../../atoms/Icon'; /** * Status: *Finished*. * Category: Hardware */ interface HardwareProductCampaign { backgroundColor: string; color: string; text: string; } interface Highlight { heading?: string; text?: string; icon?: IconDefinition; color?: string; textColor?: string; } export interface HardwareProductProps { className?: string; brand: string; is5G?: boolean; campaign?: HardwareProductCampaign | null; highlight?: Highlight; image?: { url: string; }; name?: string; imageBadge?: { url: string; }; children?: React.ReactNode; } declare const HardwareProductBox: ({ className, campaign, brand, is5G, highlight, children, image, name, imageBadge, ...rest }: HardwareProductProps) => JSX.Element; export default HardwareProductBox;