import * as React from 'react';
import { ImageLoadState } from './Image.types';
import type { IImageProps } from './Image.types';
export interface IImageState {
    loadState?: ImageLoadState;
}
export declare const ImageBase: React.FunctionComponent<IImageProps>;
