import * as React from 'react'; import { Animated } from 'react-native'; import type { NavigationState, Route, Layout, EventEmitterProps, PagerProps } from './types'; declare type Props = PagerProps & { layout: Layout; onIndexChange: (index: number) => void; navigationState: NavigationState; children: (props: EventEmitterProps & { position: Animated.AnimatedInterpolation; render: (children: React.ReactNode) => React.ReactNode; jumpTo: (key: string) => void; }) => React.ReactElement; }; export default function PanResponderAdapter({ layout, keyboardDismissMode, swipeEnabled, navigationState, onIndexChange, onSwipeStart, onSwipeEnd, children, style, }: Props): React.ReactElement>; export {};