/// import type { SwiperProps, ImageProps } from '@tarojs/components'; import './index.less'; export interface ISwiperImage { thumbnail_image: string; image: string; } /** * 自定义 props 剩下数学用法,请参考 */ export interface ILxSwiperImagesProps extends SwiperProps { width: number | string; height: number; images: ISwiperImage[]; mode?: keyof ImageProps.Mode; } export declare function LxSwiperImages(props: ILxSwiperImagesProps): JSX.Element;