/// interface ImageProps { alt?: string; draggable?: boolean; src: string; style?: object; } export default function Image(props: ImageProps): JSX.Element; export {};