import React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; export interface PageControlProps { /** * The number of pages to display */ numberOfPages: number; /** * The current page to display */ currentPage: number; /** * Additional styles */ style?: StyleProp; /** * Testing id of the component. */ testID?: string; } declare const PageControl: ({ numberOfPages, currentPage, testID, style, }: PageControlProps) => React.JSX.Element; export default PageControl;