import { type BlockVersion } from '../../model/BlockVersion'; import { type ComponentType } from '../../model/ComponentType'; import { type NavButtonProp } from './NavButtonProp'; import { type SnapAlign } from './SwipeListContainer'; import { type SwipeListControlContent } from './SwipeListControlContent'; interface SwipeListControlProps extends SwipeListControlContent, ComponentType { version?: BlockVersion; gap?: number; padding?: number; snapAlign?: SnapAlign; hasBlur?: boolean; onVisibleIndicesChange?: (indices: number[]) => void; navButtons?: NavButtonProp[]; } export declare const SwipeListControl: import("@redneckz/uni-jsx").UNIComponent; export {};