import type { AnimationDefinition } from 'motion/react'; import type { ReactNode } from 'react'; interface TransitionedViewProps { children: ReactNode; viewKey: string | number | boolean; onAnimationComplete?: (definition: AnimationDefinition) => void; } export declare const TransitionedView: import("react").ForwardRefExoticComponent>; export {};