import { ComponentPropsWithoutRef, FunctionComponent, SourceHTMLAttributes } from 'react';
export interface ImageProps extends ComponentPropsWithoutRef<'img'> {
    lazyLoad?: boolean;
    src: string;
    sources?: SourceHTMLAttributes<HTMLSourceElement>[];
}
export declare const Image: FunctionComponent<ImageProps>;
