import * as React from 'react'; declare interface ProductListItems { iconName: string; iconColor?: 'white' | 'black' | 'purple'; title: string; description?: string; href?: string; onClick?: (...args: any[]) => any; style?: 'promo'; } declare interface ProductListProps { /** * An array of items where each item can have properties of icon name, icon color, title, description and href. */ items?: ProductListItems[]; } declare const ProductList: React.FC; export default ProductList;