import React, { FC } from 'react';
import { StorageRef } from '../../../../../common/types';
interface PropsStorageRefImage extends React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement> {
    storageRef: StorageRef | string;
    noImgSrc: string;
}
export declare const StorageRefImg: FC<PropsStorageRefImage>;
export {};
