import React from "react"; type Props = { readonly className?: string; readonly src: string; readonly alt: string; readonly env?: string; readonly id?: string; readonly sizes?: string; }; export declare const ImageElement: ({ className, src, alt, id, env, sizes }: Props) => React.JSX.Element; export {};