'use client'; import { ImageBackground as RNImageBackground } from 'react-native'; import React from 'react'; import { tva } from '@gluestack-ui/nativewind-utils/tva'; const imageBackgroundStyle = tva({}); const ImageBackground = React.forwardRef< React.ComponentRef, React.ComponentProps >(function ImageBackground({ className, ...props }, ref) { return ( ); }); ImageBackground.displayName = 'ImageBackground'; export { ImageBackground };