mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 06:49:15 +01:00
9 lines
340 B
TypeScript
9 lines
340 B
TypeScript
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
|
declare const MediaBody: BsPrefixRefForwardingComponent<"div", {}>;
|
|
declare type MediaProps = BsPrefixProps;
|
|
declare type Media = BsPrefixRefForwardingComponent<'div', MediaProps> & {
|
|
Body: typeof MediaBody;
|
|
};
|
|
declare const Media: Media;
|
|
export default Media;
|