import { MediaItemRefBase } from './types';
type Props = {
    useDbCache?: boolean;
};
export interface ImgRef extends MediaItemRefBase {
    elementRef: React.RefObject<HTMLImageElement | null>;
}
export declare const Img: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<ImgRef>>;
export {};
