import { LabelProps } from '../Label'; import { EAnalyticsEvent } from '../../types/analytics'; export type CompressedStudyCardProps = { compressed: true; title: string; link: string; image: string; trackingEvent?: EAnalyticsEvent.scienceCardClicked; trackingLocation?: string; }; export type CompleteStudyCardProps = { compressed?: false; title: string; inverted?: boolean; image: string; date: number; label?: LabelProps; readTime: number; link: string; trackingEvent?: EAnalyticsEvent.scienceCardClicked; trackingLocation?: string; }; export type StudyGridCardProps = CompressedStudyCardProps | CompleteStudyCardProps; export declare function StudyGridCard(props: StudyGridCardProps): import("react").JSX.Element;