import { Animated } from 'react-native';
type AnimationStrategy = 'fade' | 'spring';
type AnimationType = 'in' | 'out';
export default function useAnimations(strategy?: AnimationStrategy): [Animated.Value, (duration: number, type?: AnimationType) => void];
export {};
//# sourceMappingURL=useAnimation.d.ts.map