import React, { ImgHTMLAttributes, SyntheticEvent } from 'react';
type ImageProps = Omit, 'onLoad' | 'onError'> & {
onLoad?: (event: Event | SyntheticEvent) => void;
onError?: (event: Event | SyntheticEvent) => void;
};
/** Please read Autoblocker.md to understand why this custom component is necessary */
export declare function Image(props: ImageProps): React.JSX.Element;
export {};