UNPKG

@kcirtaptrick/framer-motion

Version:

A simple and powerful React animation library

26 lines (25 loc) 1.31 kB
import * as React from "react"; import { MotionProps } from "./types"; import { RenderComponent, FeatureBundle } from "./features/types"; import { CreateVisualElement } from "../render/types"; import { UseVisualState } from "./utils/use-visual-state"; export interface MotionComponentConfig<Instance, RenderState> { preloadedFeatures?: FeatureBundle; createVisualElement?: CreateVisualElement<Instance>; projectionNodeConstructor?: any; useRender: RenderComponent<Instance, RenderState>; useVisualState: UseVisualState<Instance, RenderState>; Component: string | React.ComponentType; } /** * Create a `motion` component. * * This function accepts a Component argument, which can be either a string (ie "div" * for `motion.div`), or an actual React component. * * Alongside this is a config option which provides a way of rendering the provided * component "offline", or outside the React render cycle. * * @internal */ export declare function createMotionComponent<Props extends {}, Instance, RenderState>({ preloadedFeatures, createVisualElement, projectionNodeConstructor, useRender, useVisualState, Component, }: MotionComponentConfig<Instance, RenderState>): React.ForwardRefExoticComponent<React.PropsWithoutRef<Props & MotionProps> & React.RefAttributes<Instance>>;