import { Component } from "react"; export declare class NativeImage extends Component { imageView: any; /** * 移除监听,页面生命周期结束后必须移除已经监听的事件 * @param {String} contentMode 图片拉伸模式,0:拉伸填满整个view,会变形;1:等比缩放,以view比例比较小的边为比例, * view可能会出现空白;2:等比缩放,填满整个view,图片可能会被裁剪 */ static propTypes: any; constructor(props: any); startAnimation(): void; stopAnimation(): void; render(): JSX.Element; } export default NativeImage;