/** * MotionView — Reanimated-native replacement for MotiView. * * Takes motion props (from, animate, transition) and applies them using * react-native-reanimated shared values + withTiming/withSpring. * * Replaces Moti to avoid the 0.30 + Reanimated 3.17 worklet easing * incompatibility. Exit animations are deferred to RN V2. */ import React from 'react'; import type { ViewStyle } from 'react-native'; export interface MotionTransition { type?: 'timing' | 'spring'; duration?: number; delay?: number; easing?: unknown; damping?: number; stiffness?: number; mass?: number; } interface MotionViewProps { from?: Record; animate?: Record; transition?: MotionTransition; style?: ViewStyle; children?: React.ReactNode; [key: string]: unknown; } export declare function MotionView({ from, animate, transition, style, children, ...rest }: MotionViewProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=motion-view.d.ts.map