import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; export declare enum GestureDirections { UP = "up", DOWN = "down" } export interface PanGestureViewProps { /** * Additional styling */ style?: StyleProp; /** * onDismiss callback */ onDismiss?: () => void; /** * The direction of the allowed pan (default is down) */ direction?: GestureDirections; } declare const _default: React.ComponentClass; export default _default;