import { VarComponent } from './varComponent' export interface ImageProps { src?: string fit?: 'fill' | 'contain' | 'cover' | 'none' | 'scale-down' alt?: string width?: string | number height?: string | number radius?: string | number loading?: string error?: string lazy?: boolean ripple?: boolean block?: boolean onClick?: (e: Event) => void onLoad?: (e: Event) => void onError?: (e: Event) => void } export class Image extends VarComponent { $props: ImageProps } export class _ImageComponent extends Image {}