import { Variants } from '../../styles'; import * as React from 'react'; interface Props { children: React.ReactNode; style?: React.CSSProperties; variant: Variants; } declare const Card: { (props: Props): JSX.Element; defaultProps: { variant: string; }; }; export default Card;