import React, { PropsWithChildren } from 'react'; import { Animated } from 'react-native'; type AnimationContextType = { registerAnimation: (animationId: string, animation?: Animated.CompositeAnimation) => void; }; export declare const AnimationContext: React.Context; type AnimationProviderPropsType = PropsWithChildren<{ animating?: boolean; }>; declare const AnimationProvider: ({ children, animating, }: AnimationProviderPropsType) => React.JSX.Element; export default AnimationProvider;