import React from "react"; import { getImageProps as nextGetImageProps } from "next/image.js"; import type { ImageProps } from "next/image.js"; import { getImageBlurSvg } from "./blur_svg.js"; import type { OptimizedImage } from "./types.js"; export type ManifestEntry = OptimizedImage; export default function Image(props: ImageProps): React.JSX.Element; export declare function getImageProps(props: ImageProps): ReturnType; export { getImageBlurSvg };