import { Animated } from 'react-native'; import { TransformAnimations, CommonAnimations, ViewAnimations, TextAnimations, StringInterpolation, NumberInterpolation } from './types'; export declare const transformAnimationList: (keyof TransformAnimations)[]; export declare const commonAnimationLists: (keyof CommonAnimations)[]; export declare const viewAnimationList: (keyof ViewAnimations)[]; export declare const textAnimationList: (keyof TextAnimations)[]; declare type CreateInterpolatedStylesParams = { /** * A list of all animations. */ animations: { [index: string]: StringInterpolation | NumberInterpolation | undefined; }; /** * Animated Value. */ animatedValue: Animated.AnimatedValue; /** * Input range configured. */ inputRange: number[]; /** * A list on non-transformation styles desired to be caught. * If not provided, all non-transformation styles will be applied. */ nonTransformAnimationList?: string[]; }; export declare const createInterpolatedStyles: ({ animations, animatedValue, inputRange, nonTransformAnimationList, }: CreateInterpolatedStylesParams) => any; export {}; //# sourceMappingURL=animationList.d.ts.map