export interface ImageProps {
    hoverImageId?: string;
    imageId: string;
    isButton?: boolean;
    height?: string;
    width?: string;
}
export default function Image(props: ImageProps): import("react/jsx-runtime").JSX.Element;
