import React from 'react'; import { MestCss, MestGenericProps } from "../themes"; import { StyledImageVariants } from "./style"; type Props = { src: string; disableSkeleton?: boolean; width?: string; height?: string; maxDelay?: number; imgCss?: MestCss; } & MestGenericProps; type NativeAttrs = Omit, keyof Props>; export type ImageProps = Props & NativeAttrs & StyledImageVariants; declare const Image: React.FC; export default Image;