import { type BlockVersion } from '../../model/BlockVersion'; import { type ComponentType } from '../../model/ComponentType'; import { type NavButtonProp } from './NavButtonProp'; import { type SwipeListControlType } from './SwipeListControlContent'; import { type SwipeListScroll } from './useSwipeListScroll'; interface SwipeListDotsProps extends ComponentType { activeIndex?: number; dotCount?: number; listType?: SwipeListControlType; version?: BlockVersion; navButtons?: NavButtonProp[]; onVisibleIndicesChange?: (indices: number[]) => void; containerRef?: { current: HTMLDivElement | null; }; containerScroll?: SwipeListScroll; } export declare const SwipeListDots: import("@redneckz/uni-jsx").UNIComponent; export {};