import { default as React } from 'react'; interface CardProps extends React.HTMLAttributes { round?: boolean; hover?: boolean; } declare function Card({ hover, round, className, ...props }: Readonly): React.JSX.Element; export default Card;