1 | import * as React from 'react';
|
2 | import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
3 | export interface CardImgProps extends BsPrefixProps, React.ImgHTMLAttributes<HTMLImageElement> {
|
4 | variant?: 'top' | 'bottom' | string;
|
5 | }
|
6 | declare const CardImg: BsPrefixRefForwardingComponent<'img', CardImgProps>;
|
7 | export default CardImg;
|