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