import React from 'react'; interface Props { src: string; disableSkeleton?: boolean; className?: string; maxDelay?: number; } declare type NativeAttrs = Omit, keyof Props>; export declare type ImageProps = Props & NativeAttrs; declare const Image: React.ForwardRefExoticComponent>; export default Image;