import { QuaternaryTypes } from '../../utils'; import { ReactNode } from 'react'; export interface InsightProps { id: string; variant: QuaternaryTypes; headline?: ReactNode; description?: ReactNode; featured: FeaturedItemProps[]; } export interface FeaturedItemProps { id?: string; url?: string; image?: { url: string; alt: string; }; title?: ReactNode; supertag?: ReactNode; readingTime?: string; } export declare const FeaturedItem: (props: FeaturedItemProps & { variant: QuaternaryTypes; }) => import("react").JSX.Element; export declare const Featured: (props: InsightProps) => import("react").JSX.Element;