import React from 'react'; import { Animated } from 'react-native'; export declare type SegmentContextType = { opacity: Animated.Value; zIndex: Animated.Value; index: number; }; export declare const SegmentContext: React.Context; export declare function useSegmentContext(): SegmentContextType;