import React, { type ComponentClass, type ForwardRefExoticComponent, type RefAttributes, } from "react"; import Animated from "react-native-reanimated"; import { SceneComponent } from "./scene"; export function createCollapsibleScrollView
( Component: ComponentClass
) { // Use type assertion here if you're sure about the compatibility const AnimatePageView = Animated.createAnimatedComponent( Component as unknown as ComponentClass