mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 08:55:18 +00:00
9 lines
345 B
TypeScript
9 lines
345 B
TypeScript
|
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
||
|
declare const MediaBody: BsPrefixRefForwardingComponent<"div", unknown>;
|
||
|
declare type MediaProps = BsPrefixProps;
|
||
|
declare type Media = BsPrefixRefForwardingComponent<'div', MediaProps> & {
|
||
|
Body: typeof MediaBody;
|
||
|
};
|
||
|
declare const Media: Media;
|
||
|
export default Media;
|