import BsCard from "react-bootstrap/Card"; import type { BsPrefixRefForwardingComponent } from "react-bootstrap/helpers"; import type { CardProps } from "react-bootstrap/Card"; declare type Ref = typeof BsCard; declare type ICardWrapper = BsPrefixRefForwardingComponent; export interface ICard extends ICardWrapper { Body: typeof BsCard.Body; Header: typeof BsCard.Header; Img: typeof BsCard.Img; Title: typeof BsCard.Title; Subtitle: typeof BsCard.Subtitle; Text: typeof BsCard.Text; Link: typeof BsCard.Link; Footer: typeof BsCard.Footer; } export declare const Card: ICard; export type { CardProps as ICardProps }; export default Card;