import type React from "react"; import { type AnimatedBaseProps } from "./createAnimatedComponent"; export type AnimatedType = { [key in T]: React.ComponentType; }; export declare const RawAnimated: any; /** * Why favour over ? * LATER ONE IS SLOW. The intellisense (code completion) will be so slow that it completely destroy DX, especially in IDEA * Seem like the LSP will try to calculate the props type base on all key of React.JSX.IntrinsicElements * Don't know exactly why. But it's slow as hell */ export declare const Animated: AnimatedType; export { AnimatePresence } from "./AnimatePresence"; export type { AnimationKeyframe, AnimatedKeyframeGenerator } from "./createAnimatedComponent";