import { HTMLAttributes } from 'react'; export interface CardProps extends HTMLAttributes { /** If true, removes border */ feNoBorder?: boolean; /** If true, removes padding */ feNoPadding?: boolean; /** If true, the Card fills the parent element height */ feStretch?: boolean; } /** * The `` component is a general purpose container for various content. * * See [InVision DSM](https://skf.invisionapp.com/dsm/ab-skf/4-web-applications/nav/5fa7caf78c01200018354495/asset/6229d63d9fe16020a60657e5) for design principles. */ declare const Card: import("react").ForwardRefExoticComponent>; export default Card;