import React, { CSSProperties, MouseEventHandler, ReactEventHandler, TouchEventHandler, AnimationEventHandler } from 'react'; import { ImageProps } from '@tarojs/components/types/Image'; interface IImageProps extends Omit { style?: CSSProperties; onClick?: MouseEventHandler; onLoad?: ReactEventHandler; onError?: ReactEventHandler; onAnimationStart?: AnimationEventHandler; onAnimationEnd?: AnimationEventHandler; onAnimationIteration?: AnimationEventHandler; onTouchStart?: TouchEventHandler; onTouchMove?: TouchEventHandler; onTouchEnd?: TouchEventHandler; onTouchCancel?: TouchEventHandler; } declare const _default: React.ForwardRefExoticComponent & React.RefAttributes>; export default _default;