import React from 'react'; import { ProductType } from './getProducts'; interface ProductProps { name?: string; icon?: string; slogan?: string; description?: string; url?: string; links: ProductType['links']; style?: React.CSSProperties; language?: string; } declare const Product: React.FC; export default Product;