import React from 'react'; import ImageBrowser from './image-browser'; interface Props { src: string; disableAutoResize?: boolean; disableSkeleton?: boolean; width?: number; height?: number; className?: string; scale?: string; maxDelay?: number; } declare const defaultProps: { disableSkeleton: boolean; disableAutoResize: boolean; className: string; scale: string; maxDelay: number; }; type NativeAttrs = Omit, keyof Props>; export type ImageProps = Props & typeof defaultProps & NativeAttrs; type MemoImageComponent

= React.NamedExoticComponent

& { Browser: typeof ImageBrowser; }; type ComponentProps = Partial & Omit & NativeAttrs; declare const _default: MemoImageComponent; export default _default;