/** based on framer-motion@4.1.17, Copyright (c) 2018 Framer B.V. */ import { MotionValue } from "."; /** * Combine multiple motion values into a new one using a string template literal. * * ```jsx * * * *
* * * ``` * * @public */ export declare function useMotionTemplate(fragments: TemplateStringsArray, ...values: MotionValue[]): MotionValue & { reset: (fragments: TemplateStringsArray, ...values: MotionValue[]) => void };