import * as react from 'react'; import { HTMLAttributes } from 'react'; interface ListCardProps extends HTMLAttributes { /** When provided, the card renders as an `` with this href. */ href?: string; /** * `"cheapest"` applies a yellow border tint to flag the best-value item. * `false` (default) uses the standard border. */ highlight?: 'cheapest' | false; /** Open link in a new tab. Only applies when `href` is set. */ external?: boolean; } declare const ListCard: react.ForwardRefExoticComponent>; export { ListCard, type ListCardProps };