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