export default class Media extends React.PureComponent { static defaultProps: { iconColor: string; iconSize: number; }; constructor(props: any); state: { isMounted: boolean; }; componentDidMount(): void; renderIcon(props: any): React.DetailedReactHTMLElement<{ className: string; style: object; }, HTMLElement> | null; renderImage(props: any): React.JSX.Element; dimensionElement: SVGSVGElement | null | undefined; renderNoscript(props: any): React.JSX.Element | null; render(): React.JSX.Element; } import React from 'react';