UNPKG

335 BTypeScriptView Raw
1import { BsPrefixRefForwardingComponent } from './helpers';
2import FigureImage from './FigureImage';
3import FigureCaption from './FigureCaption';
4declare type Figure = BsPrefixRefForwardingComponent<'figure'> & {
5 Image: typeof FigureImage;
6 Caption: typeof FigureCaption;
7};
8declare const Figure: Figure;
9export default Figure;