import React from 'react'; import { Animated, FlatList } from 'react-native'; import { type Page } from './Page'; import type { OnboardingProps } from '../types'; type Props = OnboardingProps & { pages: Page[]; currentPage: number; setPage: (newPageIndex: number) => void; flatListRef: React.RefObject; scrollX: Animated.Value; nextPage: () => void; }; export declare const OnboardingPages: ({ showPagination, showNext, ...props }: Props) => React.JSX.Element; export {}; //# sourceMappingURL=OnboardingPages.d.ts.map