import * as React from 'react'; import { Animated } from 'react-native'; import type { NavigationState, Route, EventEmitterProps, PagerProps } from './types'; declare type Props = PagerProps & { 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 PagerViewAdapter({ keyboardDismissMode, swipeEnabled, navigationState, onIndexChange, onSwipeStart, onSwipeEnd, children, style, ...rest }: Props): React.ReactElement>; export {};