/** `wrapper:transition` is a special token read at mount time to configure the Reanimated animation; * it is not applied as a style — changing it after first render has no effect. */ import { ActivityIndicatorComposition } from '../ActivityIndicator' type WrapperStates = 'hidden' | 'visible' export type LoadingOverlayComposition = 'wrapper' | `wrapper:${WrapperStates}` | 'wrapper:transition' | `loader${Capitalize}` | 'transition'