import { Ref } from 'react'; import type { Insets } from 'react-native'; import type Animated from 'react-native-reanimated'; import type BottomSheet from '../../components/bottomSheet'; import type { BottomSheetModalStackBehavior } from '../../components/bottomSheetModal'; export interface BottomSheetModalInternalContextType { containerHeight: Animated.SharedValue; containerOffset: Animated.SharedValue>; mountSheet: (key: string, ref: Ref, stackBehavior: BottomSheetModalStackBehavior) => void; unmountSheet: (key: string) => void; willUnmountSheet: (key: string) => void; } export declare const BottomSheetModalInternalContext: import("react").Context; export declare const BottomSheetModalInternalProvider: import("react").Provider;