/// export interface ImageProps { alt: string; src: string; title?: string; } export default function Image({ alt, src, title: titleProp }: ImageProps): JSX.Element;