import { CompressedStudyCardProps } from '../../components/StudyGridCard/StudyGridCard'; import { EAnalyticsEvent } from '../../types/analytics'; type Props = { title: React.ReactNode; description?: string; studies: Array; indexed?: { number: string; label: string; }; trackingEvent?: EAnalyticsEvent.scienceCardClicked; trackingLocation?: string; }; export declare const Curiosity: ({ title, description, studies, indexed, trackingEvent, trackingLocation }: Props) => import("react").JSX.Element; export {};