@sky-mavis/tanto-widget
Version:
Tanto Widget
10 lines (9 loc) • 426 B
TypeScript
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 {};