import CardImg from './CardImg'; import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent } from './helpers'; import { Color, Variant } from './types'; declare const CardBody: BsPrefixRefForwardingComponent; declare const CardTitle: BsPrefixRefForwardingComponent; declare const CardSubtitle: BsPrefixRefForwardingComponent; declare const CardLink: BsPrefixRefForwardingComponent; declare const CardText: BsPrefixRefForwardingComponent; declare const CardHeader: BsPrefixRefForwardingComponent; declare const CardFooter: BsPrefixRefForwardingComponent; declare const CardImgOverlay: BsPrefixRefForwardingComponent; export interface CardProps extends BsPrefixPropsWithChildren { bg?: Variant; text?: Color; border?: Variant; body?: boolean; } declare type Card = BsPrefixRefForwardingComponent<'div', CardProps> & { Img: typeof CardImg; Title: typeof CardTitle; Subtitle: typeof CardSubtitle; Body: typeof CardBody; Link: typeof CardLink; Text: typeof CardText; Header: typeof CardHeader; Footer: typeof CardFooter; ImgOverlay: typeof CardImgOverlay; }; declare const Card: Card; export default Card;