import { FC } from 'react';
import type { Props } from './Card.types';
import './Card.style.scss';
/**
 * The Card component.
 * @deprecated Use the equivalent from momentum.design (NPM: `@momentum-design/components/dist/react`)
 */
declare const Card: FC<Props>;
export default Card;
