mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +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;
|