import * as React from 'react'; import { Product } from '../types'; export type MiniProductCardProps = { product: Product; url?: string; target?: string; external?: boolean; }; declare const MiniProductCard: React.FunctionComponent; export default MiniProductCard;