import React from 'react'; import { SwiperProps, SwiperItemProps } from 'remax/ali'; export interface Props extends Omit { items: (SwiperItemProps & { node: React.ReactNode; })[]; indicatorDots?: boolean | 'line' | 'line-round'; lineDotsCls?: string; lineRoundDotsCls?: string; roundDotCls?: string; roundDotActiveCls?: string; current?: number; onChange?: (e: { detail: { current: number; }; }) => void; pointColor?: string; pointActiveColor?: string; displayMultipleItems?: number; centeredSlides?: boolean; spaceBetween?: number; /** * 非当前项的缩放比例,开启后会自动包裹一层 div 进行缩放 */ inactiveScale?: number; } declare const _default: ({ items, className, style, autoplay, interval, indicatorDots, lineDotsCls, lineRoundDotsCls, roundDotCls, roundDotActiveCls, current, onChange, displayMultipleItems, pointColor, pointActiveColor, centeredSlides, spaceBetween, inactiveScale, ...props }: Props) => React.JSX.Element; export default _default;