/// export interface PressCardProps { /** * String at the top of the text portion of the card */ title: string; /** * String used as body/subtitle below title */ body?: string; /** * String that is used as link text, optional */ linkText?: string; /** * String that is used as link href, optional */ linkHref?: string; /** * String that is used as link text, only for press cards */ linkText2?: string; /** * String that is used as link href, only for press cards */ linkHref2?: string; /** * Image component to fill in top of card */ img: React.ReactNode; /** * Image component for thumbnail at top of card, only for story cards */ thumbnail?: React.ReactNode; } export declare const PressCard: ({ body, img, title, linkText, linkHref, linkText2, linkHref2, }: PressCardProps) => JSX.Element;