import { type ComponentType } from '../../model/ComponentType'; import { type SwipeListScrollButtonsContent } from './SwipeListControlContent'; import { type SwipeListScroll } from './useSwipeListScroll'; export interface SwipeListScrollButtonsProps extends SwipeListScrollButtonsContent, ComponentType { scroll: SwipeListScroll; hasBlur?: boolean; isBottom?: boolean; } export declare const SwipeListScrollButtons: import("@redneckz/uni-jsx").UNIComponent;