/** -------------------------------------------- */ /** Utility functions */ /** -------------------------------------------- */ import Animated from "react-native-reanimated"; import type { AnimationConfig } from './types'; export declare function overrideConfig(config: AnimationConfig): void; /** * Converts snap points with percentage to fixed numbers. */ export declare const normalizeSnapPoints: (snapPoints: ReadonlyArray, containerHeight: number) => number[]; export declare function runDecay(clock: Animated.Clock, value: Animated.Value, velocity: Animated.Node, contentHeight: Animated.Value): Animated.Node; export declare function runSpring(clock: Animated.Clock, start: Animated.Value, end: Animated.Node, velocity: Animated.Value, updateWhenFinished: Animated.Node, wasRun: Animated.Value, valueToUpdate: Animated.Value): Animated.Node;