import { ReactElement } from 'react'; interface Props { alt: string; src: string | undefined; maxHeight?: string; maxWidth?: string; } export declare function FitImage(props: Props): ReactElement; export {};