export default class Animation { constructor({ initialValue, useNativeDriver, }: { initialValue?: number | undefined; useNativeDriver?: boolean | undefined; }); animate: Animated.Value; useNativeDriver: boolean; in(onFinished: any): void; out(onFinished: any): void; getAnimations(): void; } import { Animated } from "react-native"; //# sourceMappingURL=Animation.d.ts.map