import * as React from 'react';
import { SxProp } from '../../system';
export interface ImageProps extends React.ImgHTMLAttributes<HTMLImageElement>, SxProp {
    /** Fallback component for the image. This is shown when the image is loading. */
    fallback?: React.ReactElement;
    /** Fallback src image. If you intend to use this instead of a component, it's advised to use a data src. */
    fallbackSrc?: string;
    /** Image src. */
    src?: string;
}
export declare const Image: React.ForwardRefExoticComponent<ImageProps & React.RefAttributes<HTMLImageElement>>;
