type TMediaView = { type: 'media'; media: Array<{ url?: string; logo: string; }>; }; type TFeaturedQuoteView = { type: 'quote'; quote: string; source?: string; }; type TFeaturedButtonView = { type: 'cta'; button_label: string; button_link?: string; }; export type FeaturedInProps = { label: string; title?: string; content: Array; colorScheme?: 'light' | 'dark'; }; export declare function FeaturedIn({ label, title, content, colorScheme }: FeaturedInProps): import("react").JSX.Element; export {};