import React from 'react'; import { CSS } from "../config"; interface Props { src: string; disableSkeleton?: boolean; cssContainer?: CSS; cssImage?: CSS; maxDelay?: number; width?: number | string; height?: number | string; } declare type NativeAttrs = Omit, keyof Props>; export declare type ImageProps = Props & NativeAttrs; declare const Image: React.FC; export default Image;