import React, { FC } from 'react'; import type { SharedValue } from 'react-native-reanimated'; import type { Layout, GlowConfig } from './types'; import { UnifiedSkiaGlow } from './UnifiedSkiaGlow'; interface SkiaRootProps { layout: Layout; skiaOpacity: SharedValue; animationProgress: SharedValue; fromConfigSV: SharedValue; toConfigSV: SharedValue; } export const SkiaRoot: FC = (props) => { return ( ); };