import { Animated, ViewProps } from 'react-native'; export declare type Pagination = 'dots-bottom' | 'dots-top' | 'tabs-top' | 'tabs-bottom'; export declare type SceneViewContext = { nextScene: () => void; previousScene: () => void; width: number; paginationLength: number; animatedValue: Animated.Value; activeColor: string; inactiveColor: string; }; export declare type PaginationProps = { spacing?: number; length: number; } & ViewProps;