import { FC } from 'react';
import type { Props } from './Card.types';
import './Card.style.scss';
/**
 * The Card component.
 */
declare const Card: FC<Props>;
export default Card;
