/** based on framer-motion@4.1.17, Copyright (c) 2018 Framer B.V. */ /** based on framer-motion@4.0.3, Copyright (c) 2018 Framer B.V. */ /** * A list of all transformable axes. We'll use this list to generated a version * of each axes for each transform. */ declare var transformAxes: string[]; /** * Generate a list of every possible transform key. */ declare var transformProps: string[]; /** * A function to use with Array.sort to sort transform keys by their default order. */ declare function sortTransformProps(a: string, b: string): number; declare function isTransformProp(key: string): boolean; declare function isTransformOriginProp(key: string): boolean; export { isTransformOriginProp, isTransformProp, sortTransformProps, transformAxes, transformProps }; //# sourceMappingURL=transform.d.ts.map