UNPKG

368 BTypeScriptView Raw
1import * as React from 'react';
2
3import FigureCaption from './FigureCaption';
4import FigureImage from './FigureImage';
5
6import { BsPrefixComponent } from './helpers';
7
8declare class Figure<
9 As extends React.ElementType = 'figure'
10> extends BsPrefixComponent<As> {
11 static Image: typeof FigureImage;
12 static Caption: typeof FigureCaption;
13}
14
15export default Figure;