import { FC } from 'react';
import { StorageRef } from '../../../../../common/types';
export interface DappletImageProps {
    storageRef: StorageRef;
    className?: string;
}
export declare const DappletImage: FC<DappletImageProps>;
