import { JSX } from 'solid-js'; export interface GeneratedImageLike { base64?: string; uint8Array?: Uint8Array; mediaType?: string; } export interface ImageProps extends GeneratedImageLike { alt: string; class?: string; } declare function Image(props: ImageProps): JSX.Element; export { Image };