import * as React from 'react'; import { BsPrefixProps, BsPrefixRefForwardingComponent } from '../utils/helpers'; import { Color, Variant, CardVariant } from '../utils/types'; export interface CardProps extends BsPrefixProps, React.HTMLAttributes { /** Sets card background */ bg?: Variant; /** Sets card text color */ text?: Color; /** Sets card border color */ border?: Variant; /** Use on actionable cards like SelectableCard and Quantity Toggle Card' */ variant?: CardVariant; } export declare const Card: BsPrefixRefForwardingComponent<'div', CardProps>; declare const _default: BsPrefixRefForwardingComponent<"div", CardProps> & { Img: BsPrefixRefForwardingComponent<"img", import("./CardImg").CardImgProps>; Title: BsPrefixRefForwardingComponent<"h3", BsPrefixProps>>; Subtitle: BsPrefixRefForwardingComponent, HTMLDivElement>, "ref"> & React.RefAttributes>, BsPrefixProps>>; Body: BsPrefixRefForwardingComponent<"div", BsPrefixProps>>; Link: BsPrefixRefForwardingComponent<"a", BsPrefixProps>>; StretchedLink: BsPrefixRefForwardingComponent<"a", BsPrefixProps>>; Text: BsPrefixRefForwardingComponent<"p", BsPrefixProps>>; Header: BsPrefixRefForwardingComponent<"div", import("./CardHeader").CardHeaderProps>; Footer: BsPrefixRefForwardingComponent<"div", BsPrefixProps>>; ImgOverlay: BsPrefixRefForwardingComponent<"div", BsPrefixProps>>; Unit: BsPrefixRefForwardingComponent<"div", BsPrefixProps>>; }; export default _default;