import type React from 'react'; import type { BaseProps } from '../../types/component'; export interface ImageProps extends BaseProps { src?: string; mode?: 'scaleToFill' | 'aspectFit' | 'aspectFill' | 'widthFix' | 'top' | 'bottom' | 'center' | 'left' | 'right' | 'top left' | 'top right' | 'bottom left' | 'bottom right'; style?: React.CSSProperties; lazyLoad?: boolean; onLoad?: (e: any) => void; onError?: (e: any) => void; onTap?: (e: any) => void; onClick?: (e: any) => void; onTouchStart?: (e: any) => void; onTouchMove?: (e: any) => void; onTouchEnd?: (e: any) => void; onTouchCancel?: (e: any) => void; } export declare const Image: React.ComponentType;