import React from 'react'; export type ImgProps = Omit, HTMLImageElement>, 'src'> & { readonly maxRetries?: number; readonly pauseWhenLoading?: boolean; readonly delayRenderRetries?: number; readonly delayRenderTimeoutInMilliseconds?: number; readonly onImageFrame?: (imgelement: HTMLImageElement) => void; readonly src: string; }; /** * @description Works just like a regular HTML img tag. When you use the tag, Remotion will ensure that the image is loaded before rendering the frame. * @see [Documentation](https://www.remotion.dev/docs/img) */ export declare const Img: React.ForwardRefExoticComponent & React.RefAttributes>;