import React, { CSSProperties, MouseEventHandler, AnimationEventHandler, TransitionEventHandler } from 'react'; import { ViewProps } from '@tarojs/components/types/View'; interface IViewProps extends Omit { style?: CSSProperties; onClick?: MouseEventHandler; onAnimationStart?: AnimationEventHandler; onAnimationEnd?: AnimationEventHandler; onAnimationIteration?: AnimationEventHandler; onTransitionEnd?: TransitionEventHandler; } declare const _default: React.ForwardRefExoticComponent & React.RefAttributes>; export default _default;