import { default as React } from 'react'; import { HighlightCardProps } from '../../components/HighlightCard'; export type HighlightProps = { title?: string; subtitle?: string; highlightCards: Array; }; export declare const Highlight: ({ title, subtitle, highlightCards }: HighlightProps) => React.JSX.Element;