/// export interface CardProps { /** * Web property that will change card base styling */ webProperty: 'originprotocol' | 'ousd' | 'story' | 'launchpad' | 'press'; /** * String at the top of the text portion of the card */ title: string; /** * String used as body/subtitle below title */ body?: string | React.ReactNode; /** * String that is used as link text, optional */ linkText?: string; /** * String that is used as link href, optional */ linkHref?: 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; /** * Target for links. Defaults to _blank. */ target?: '_blank' | '_parent' | '_self' | '_top'; } export declare const Card: ({ body, img, thumbnail, title, linkText, linkHref, webProperty, target }: CardProps) => JSX.Element;