import React from 'react'; import type { ImageData } from '../types.js'; type NativeImgProps = Omit, 'src' | 'srcSet' | 'sizes'> & { src?: string; }; export type ImgProps = NativeImgProps & { mediaId?: number; cdnHost?: string; sizes?: string; onImageData?: (data: ImageData) => void; }; export declare const Img: React.MemoExoticComponent, "src" | "srcSet" | "sizes"> & { src?: string; } & { mediaId?: number; cdnHost?: string; sizes?: string; onImageData?: (data: ImageData) => void; } & React.RefAttributes>>; export {};