diff --git a/packages/react-native-reanimated/src/createAnimatedComponent/index.ts b/packages/react-native-reanimated/src/createAnimatedComponent/index.ts index b6c6176ebc3..c800d0944d5 100644 --- a/packages/react-native-reanimated/src/createAnimatedComponent/index.ts +++ b/packages/react-native-reanimated/src/createAnimatedComponent/index.ts @@ -2,3 +2,4 @@ export type { AnimatedProps } from './commonTypes'; export type { AnimatedComponentType } from './createAnimatedComponent'; export { createAnimatedComponent } from './createAnimatedComponent'; +export { NativeEventsManager } from './NativeEventsManager'; diff --git a/packages/react-native-reanimated/src/index.ts b/packages/react-native-reanimated/src/index.ts index 9b80085f552..9117115c7bb 100644 --- a/packages/react-native-reanimated/src/index.ts +++ b/packages/react-native-reanimated/src/index.ts @@ -14,7 +14,6 @@ import * as Animated from './Animated'; export default Animated; -export { createAnimatedComponent } from './Animated'; export type { DecayAnimation, DelayAnimation, @@ -103,6 +102,10 @@ export { isReanimated3, makeMutable, } from './core'; +export { + createAnimatedComponent, + NativeEventsManager, +} from './createAnimatedComponent'; export * from './css'; export type { EasingFunctionFactory } from './Easing'; export { Easing } from './Easing';