import { FC, ReactNode, ReactType } from 'react'; import { ImageProps } from '../Image'; import { LinkProps } from '../Link'; export interface CardProps { ImageProps?: ImageProps; Image?: ReactType; LinkProps?: LinkProps; title?: string; children?: ReactNode; id: string; variant: 'normal' | 'redesign' | 'card-normal' | 'card-small'; urlName?: string; Link?: ReactType; backgroundColor: string; campaign?: string; } declare const Card: FC; export default Card;