import type { Animated } from 'react-native'; import type { PinningDirection } from '@coinbase/cds-common/types/BoxBaseProps'; type UseDrawerPanResponderParams = { drawerAnimation: Animated.Value; animateSnapBack: Animated.CompositeAnimation; pin: PinningDirection; disableCapturePanGestureToDismiss: boolean; onBlur?: () => void; handleSwipeToClose: () => void; opacityAnimation: Animated.Value; verticalDrawerPercentageOfView: number; }; export declare const useDrawerPanResponder: ({ pin, drawerAnimation, animateSnapBack, disableCapturePanGestureToDismiss, onBlur, handleSwipeToClose, opacityAnimation, verticalDrawerPercentageOfView, }: UseDrawerPanResponderParams) => import('react-native').PanResponderInstance; export {}; //# sourceMappingURL=useDrawerPanResponder.d.ts.map