import { ReactNode } from 'react'; import { MdxComponent } from '../interfaces'; type ImageType = 'fixed'; interface ImageWrapperProps { children: ReactNode; className?: string | null; type: ImageType; } /** * 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 declare const ImageWrapper: MdxComponent; export {};