interface ReactImageProps {
    src: string;
    alt: string;
    placeholderSrc?: string;
    [key: string]: any;
}
declare function ReactImage(props: ReactImageProps): JSX.Element;

export { ReactImage as default };
