import type { HTMLAttributes, ImgHTMLAttributes } from 'react'; import React from 'react'; import type { Props as LoadingPlaceholderProps } from './LoadingPlaceholder'; interface Props extends Omit, 'placeholder'>, Pick, Pick, 'alt'> { src: string; imageWidth: number | undefined; imageHeight: number | undefined; onStartLoading?: () => void; onLoad?: () => void; } export declare const ImageWithLoadingPlaceholder: React.ForwardRefExoticComponent>; export {};