import { ChakraComponent, HTMLChakraProps } from "@chakra-ui/react";
import { ImageProps as NextImageProps } from "next/image";
export type ImageProps = NextImageProps & Omit<HTMLChakraProps<"img">, keyof NextImageProps>;
export declare const Image: ChakraComponent<"img", NextImageProps>;
