import type { FunctionComponent } from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; export interface PageIndicatorProps { currentIndex: number; itemsCount: number; style?: StyleProp; dotStyle?: StyleProp; dotActiveStyle?: StyleProp; } export declare const PageIndicator: FunctionComponent;