import React from 'react';
import { BottomSheetProps } from '@gorhom/bottom-sheet';
import { ViewStyle } from 'react-native';
export interface SwipeUpProps extends BottomSheetProps {
    onChangeSnap?: () => void;
    swipeWrapperStyle?: ViewStyle;
    snapPosition?: number;
}
declare const SwipeUp: React.ForwardRefExoticComponent<SwipeUpProps & React.RefAttributes<import("@gorhom/bottom-sheet/lib/typescript/types").BottomSheetMethods>>;
export default SwipeUp;
