import { Animated } from 'react-native'; import { ScrollElement } from './types'; export declare const IS_IOS: boolean; export declare const spring: (value: Animated.Value, to: number, native?: boolean) => Animated.CompositeAnimation; export declare const extractLabels: (segments: { props: { label: string; }; }[]) => string[]; export declare const CONTROL_HEIGHT = 48; export declare const scrollTo: (ref: ScrollElement, to: number, animated?: boolean) => void;