/// export declare const VELOCITY = 10; export declare const DAMPING = 100; export declare const pathTransition: ({ from, to }: { from: any; to: any; }) => import("popmotion").Action; export declare const transition: { opacity: { type: string; ease: string; duration: number; }; strokeDasharray: { type: string; duration: number; }; d: ({ from, to }: { from: any; to: any; }) => import("popmotion").Action; default: { type: string; velocity: number; damping: number; }; }; export declare const PoseSVGGElement: import("react").ComponentType<{ [key: string]: any; children?: any; pose?: import("react-pose/lib/components/PoseElement/types").CurrentPose; _pose?: import("react-pose/lib/components/PoseElement/types").CurrentPose; initialPose?: import("react-pose/lib/components/PoseElement/types").CurrentPose; withParent?: boolean; onPoseComplete?: (pose: import("react-pose/lib/components/PoseElement/types").CurrentPose) => any; onValueChange?: { [key: string]: (v: any) => any; }; innerRef?: { current: any; } | ((el: Element) => any); } & import("react-pose/lib/components/PoseElement/types").PoseContextProps & import("react").HTMLProps>;