import React from 'react'; export interface ImageProps { src?: string; alt?: string; svg?: React.ReactNode; responsive?: boolean; height?: any; } export default function Image({ src, svg, alt, height, responsive }: ImageProps): JSX.Element;