import React, { PropsWithChildren } from "react"; import { SharedValue, WithSpringConfig } from "react-native-reanimated"; interface GestureItemComponentProps extends PropsWithChildren { index: number; currentIndex: SharedValue; isFirst: boolean; isLast: boolean; rootTranslateX: SharedValue; opacity: SharedValue; width: number; height: number; dataLength: number; gap: number; onClose: () => void; setIsFocused: (val: boolean) => void; isFocused: boolean; springConfig: WithSpringConfig; maxScale: number; doubleTabEnabled: boolean; pinchEnabled: boolean; swipeToCloseEnabled: boolean; rtl?: boolean; contentCenterX: number; contentCenterY: number; contentContainerSize: { width: number; height: number; }; } export declare const GestureItemComponent: React.MemoExoticComponent<({ children, index, currentIndex, isFirst, isLast, rootTranslateX, opacity, dataLength, width, height, gap, onClose, setIsFocused, isFocused, maxScale, springConfig, doubleTabEnabled, swipeToCloseEnabled, pinchEnabled, rtl, contentCenterX, contentCenterY, contentContainerSize, }: GestureItemComponentProps) => React.JSX.Element>; export {}; //# sourceMappingURL=GestureItemComponent.d.ts.map