mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
10 lines
335 B
TypeScript
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;
|