import { Animated } from 'react-native'; import type { MotionDuration } from '@coinbase/cds-common/types/Motion'; /** * Uses a default overlay animation config, but you can pass it custom duration tokens for enter and exit animations * If only a custom enter animation duration value is provided, it will be used for both enter and exit animations */ export declare const useOverlayAnimation: ( animateInDuration?: MotionDuration, animateOutDuration?: MotionDuration, ) => [Animated.Value, Animated.CompositeAnimation, Animated.CompositeAnimation]; //# sourceMappingURL=useOverlayAnimation.d.ts.map