import * as seadn from "@opensea/seadn"; import NextImage from "next/image"; import React from "react"; type NextImageProps = React.ComponentProps; export type ImageProps = Omit & { alt?: string; src: string | null | undefined; fit?: seadn.MediaFit; frameTime?: number; format?: seadn.MediaFormat; blurhash?: string | null; /** * This can be useful for cases where we have the blurDataURL already computed */ blurDataURL?: string | null; original?: boolean; /** * Boost the image quality by going to the next image bucket. E.g. boost=2 will go up one bucket. */ boost?: number; }; export declare const Image: React.ForwardRefExoticComponent & React.RefAttributes>; export {}; //# sourceMappingURL=Image.d.ts.map