import * as React from 'react'; import { Animated } from 'react-native'; import type { EventEmitterProps, NavigationState, PagerProps, Route } from './types'; type Props = PagerProps & { onIndexChange: (index: number) => void; onTabSelect?: (props: { index: number; }) => void; navigationState: NavigationState; children: (props: EventEmitterProps & { position: Animated.AnimatedInterpolation; render: (children: React.ReactNode) => React.ReactNode; jumpTo: (key: string) => void; }) => React.ReactElement; }; export declare function PagerViewAdapter({ keyboardDismissMode, swipeEnabled, navigationState, onIndexChange, onTabSelect, onSwipeStart, onSwipeEnd, children, style, animationEnabled, ...rest }: Props): React.ReactElement>; export {}; //# sourceMappingURL=PagerViewAdapter.d.ts.map