Files
Speedtest-Tracker/conf/site/node_modules/react-bootstrap/esm/Figure.d.ts
Henry Whitaker 1e25197063 Updated to v1.7.8
2020-07-20 17:20:17 +01:00

10 lines
335 B
TypeScript

import { BsPrefixRefForwardingComponent } from './helpers';
import FigureImage from './FigureImage';
import FigureCaption from './FigureCaption';
declare type Figure = BsPrefixRefForwardingComponent<'figure'> & {
Image: typeof FigureImage;
Caption: typeof FigureCaption;
};
declare const Figure: Figure;
export default Figure;