import { type IntersectionObserverOptions } from '../../hooks/useIntersectionObserver'; import { type ComponentType } from '../../model/ComponentType'; /** * @title Элемент списка */ interface SwipeListControlItemProps extends ComponentType { style?: Record; idx?: number; activeIndex?: number; observerOptions?: IntersectionObserverOptions; onIntersection?: (idx: number, entry: IntersectionObserverEntry) => void; } export declare const SwipeListItem: import("@redneckz/uni-jsx").UNIComponent; export {};