import { Animated } from 'react-native'; interface Arguments { onAnimationStart?: (mode: 'hide' | 'show') => void; onAnimationEnd?: (mode: 'hide' | 'show') => void; } export default function useWebViewAnimation({ onAnimationStart, onAnimationEnd, }: Arguments): { animatedStyles: { webview: { transform: { translateY: Animated.AnimatedInterpolation; }[]; }; backdrop: { opacity: Animated.AnimatedInterpolation; }; }; animateWebView: (mode: 'hide' | 'show') => void; }; export {}; //# sourceMappingURL=useWebViewAnimation.d.ts.map