import { 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<TransitionedViewProps & import("react").RefAttributes<HTMLDivElement>>;
export {};
