import Animated from "react-native-reanimated"; export * from "./physics"; export declare type Value = string | number | boolean; export interface AnimatedAdaptableXY { x: Animated.Adaptable; y: Animated.Adaptable; } export interface AnimatedNodeXY { x: Animated.Node; y: Animated.Node; } export interface AnimatedValueXY { x: Animated.Value; y: Animated.Value; } export declare type StartHandler = () => void; export declare type EndHandler = (cancelled: boolean) => void; export declare type StartListeners = StartHandler[]; export declare type EndListeners = EndHandler[];