/** * The `` component allows the user to set a `type='fixed'` * which forces a fixed max width inside the container, and scales down * to smaller sizes at tablet and mobile. */ export function ImageWrapper({ children, className, type }: { children: any; className: any; type: any; }): React.DetailedReactHTMLElement<{ className: string; }, HTMLElement>; export namespace ImageWrapper { namespace propTypes { let children: PropTypes.Requireable; let className: PropTypes.Requireable; let type: PropTypes.Validator; } } import React from 'react'; import PropTypes from 'prop-types';