import { Animated, type StyleProp, type ViewStyle, type TextStyle } from 'react-native'; import React from 'react'; type FooterProps = { animatedValue: Animated.Value; numberOfScreens: number; backgroundColor: string; color: string; width: number; showDone?: boolean; showSkip?: boolean; showNext?: boolean; nextLabel?: string | React.ReactNode; skipLabel?: string | React.ReactNode; doneLabel?: string | React.ReactNode; paginationContainerStyle?: StyleProp; buttonRightContainerStyle?: StyleProp; buttonLeftContainerStyle?: StyleProp; dotsContainerStyle?: StyleProp; doneLabelStyle?: StyleProp; hasSkipPosition?: boolean; skipLabelStyle?: StyleProp; skipButtonContainerStyle?: StyleProp; nextButtonContainerStyle?: StyleProp; doneButtonContainerStyle?: StyleProp; nextLabelStyle?: StyleProp; paginationPosition?: 'top' | 'bottom'; onDone?: () => void; onSkip?: () => void; onNext?: () => void; }; export declare function Pagination(props: FooterProps): React.JSX.Element; export {}; //# sourceMappingURL=Pagination.d.ts.map