import type Animated from 'react-native-reanimated'; import type { ViewProps } from 'react-native'; export interface BottomSheetBackgroundProps extends Pick { /** * Current sheet position index. * @type Animated.Value */ animatedIndex: Animated.Node; /** * Current sheet position. * @type Animated.Value */ animatedPosition: Animated.Node; }