import React from 'react'; export interface OptimizeImageProps { imageStorageBaseUrl?: string; apiServerUrl?: string; } export interface ImageProps extends OptimizeImageProps { src: string; alt?: string; options?: any; className?: string; width?: number; height?: number; backgroundImage?: boolean; delay?: number; } /** * Use this component if image is stored in S3 (or app's main image store). * registry-server will send back an optimized version of the original. * To get an optimized image, you must include imageStorageBaseUrl and apiServerUrl. * Note: not compatible with SVGs */ declare const Image: React.FC; export { Image };