import { default as React } from 'react'; export type ContentHighlightProps = { label?: string; title: React.ReactNode; content: { title: string; description?: string; image?: string; type: 'image' | 'youtube' | 'wistia'; videoId?: string; buttonLabel?: string; link?: string; }; }; export declare const ContentHighlight: ({ label, title, content }: ContentHighlightProps) => React.JSX.Element;