import type { Animated } from 'react-native'; import type { AnimatableStyle } from '../../factories'; export interface InterpolatedObject { [key: string]: Animated.AnimatedInterpolation | InterpolatedObject | InterpolatedObject[]; } export declare const interpolateValues: (value: Animated.Value, styles: S[]) => Animated.WithAnimatedValue;