import React from 'react'; import { CardTypes } from '../utils/prop-types'; interface Props { hoverable?: boolean; shadow?: boolean; className?: string; type?: CardTypes; } type NativeAttrs = Omit, keyof Props>; export type CardProps = Props & NativeAttrs; declare const Card: React.ForwardRefExoticComponent>; export default Card;