/** * DbSwipeAction 左滑操作组件 * * v3 重构:基于 react-native-swipe-list-view 的 SwipeRow 封装 * - 使用 SwipeRow 的 setScrollEnabled 机制解决列表内手势冲突 * - 通过 SwipeListContext 自动获取父级列表的滚动控制能力 * - 支持多个 SwipeAction 之间的互斥(打开一个时自动关闭其他) * - 保持 DbSwipeAction 原有 API 不变 * - 支持在 FlatList / ScrollView 列表中正常左滑 */ export declare const DbSwipeAction: any; export declare const SwipeAction: any; export default DbSwipeAction; export { SwipeListProvider, SwipeListContext, useSwipeListContext } from './SwipeContext'; export type { DbSwipeActionProps, DbSwipeActionRef, SwipeActionButton } from './DbSwipeAction.types';