import React from 'react'; import { StyledCardVariants } from "./style"; import { MestGenericProps } from "../themes"; type Props = MestGenericProps; type NativeAttrs = Omit, keyof Props>; export type CardProps = Props & NativeAttrs & StyledCardVariants; declare const Card: React.ForwardRefExoticComponent & { children?: React.ReactNode; } & React.RefAttributes>; export default Card;