import { default as React } from 'react'; import { TColorScheme } from '../../types/common'; export type HighlightCardProps = { image: string; eyebrow?: string; title?: string; description?: string; link?: string; colorScheme?: TColorScheme; }; export declare const HighlightCard: ({ image, eyebrow, title, description, link, colorScheme, }: HighlightCardProps) => React.JSX.Element;