import React from 'react'; import { ImageProps, ViewProps } from 'remax/one'; interface Props extends React.PropsWithChildren { /** * 图片的props */ imgProps?: ImageProps; /** * 背景图 */ img?: string; /** * 里层view的props */ innerProps?: ViewProps; isPreviewImage?: boolean; } declare const _default: ({ img, imgProps, className, innerProps, children, isPreviewImage, ...props }: Props) => React.JSX.Element; export default _default;