1 | import * as React from 'react';
|
2 | import type { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
3 | export interface FigureCaptionProps extends BsPrefixProps, React.HTMLAttributes<HTMLElement> {
|
4 | }
|
5 | declare const FigureCaption: BsPrefixRefForwardingComponent<'figcaption', FigureCaptionProps>;
|
6 | export default FigureCaption;
|