import React from 'react'; import { Animated } from 'react-native'; import type { ViewProps, StyleProp, ViewStyle } from 'react-native'; import type { PanLocationProps } from './PanningContext'; export interface PanResponderViewProps extends Omit { onPanLocationChanged?: (location: PanLocationProps) => void; ignorePanning?: boolean; isAnimated?: boolean; style?: StyleProp>; } declare const _default: React.MemoExoticComponent<{ (props: PanResponderViewProps): JSX.Element; displayName: string; }>; export default _default;