/// import type { BorderProps, LayoutProps, SpaceProps } from '@lx-react-materiel/shared'; import type { ImageProps } from '@tarojs/components'; import './index.less'; interface ILxImageBasic { urls?: string[]; } type ILxImageProps = ImageProps & BorderProps & LayoutProps & SpaceProps & ILxImageBasic; /** * 视图组件 支持 JPG、PNG、SVG、WEBP、GIF 等格式以及云文件ID。 * * 1、基本用法参考 https://docs.taro.zone/docs/components/media/image * 2、更多用法请查看 lxImage.stories * * @param props * @example * 普通支持用法: * void 0} width={100} height={100}> * * 支持预览的用法: * */ export declare function LxImage(props: ILxImageProps): JSX.Element; export {};