import { Animated } from 'react-native'; /** * Animation d'entrée : la bulle part du point du parent (ex: bouton) et s'étend. */ export declare const runParentZoomEnter: (animation: Animated.Value, translateY: Animated.Value, opacity: Animated.Value, duration: number, onEnd?: () => void, circleOpacity?: Animated.Value) => void; export declare const runParentZoomExit: (animation: Animated.Value, opacity: Animated.Value, duration: number, onEnd?: () => void, circleOpacity?: Animated.Value) => void;