import {ImageProps, ViewProps} from '@tarojs/components' import {FunctionComponent} from 'react' export interface ImageViewProps extends ViewProps { /** * @description 背景图url */ src: string /** * @description 图片容器宽度 * @default 100 */ width?: string | number /** * @description 图片容器高度 * @default 100 */ height?: string | number /** * @description 图片容器高度 * @default 100 */ mode?: keyof ImageProps.Mode style?: React.CSSProperties children?: React.ReactNode } declare const ImageView: FunctionComponent export {ImageView}