import { AnimationCallback, WithSpringConfig, WithTimingConfig } from 'react-native-reanimated'; import type { MotionAnimationKey } from '../internal/constants'; export declare const useReanimatedTiming: () => { withTiming: (propertyKey: MotionAnimationKey, toValue: number, config?: WithTimingConfig, callback?: AnimationCallback) => number; withSpring: (propertyKey: MotionAnimationKey, toValue: number, config?: WithSpringConfig, callback?: AnimationCallback) => number; };