import * as React from 'react'; import { PropsType } from './index'; import type { Except } from 'type-fest'; interface ImageInnerPropsType extends Except { objectFit: React.CSSProperties['objectFit']; isError: boolean; setIsError: React.Dispatch>; } export declare function ImageInner({ objectFit, style, className, alt, src, isError, setIsError, events, lazyLoad, maskClosable, imgPreview, }: ImageInnerPropsType): JSX.Element; export {};