/** based on framer-motion@4.1.17, Copyright (c) 2018 Framer B.V. */ import type { ResolvedValueTarget } from "../../types"; /** based on framer-motion@4.0.3, Copyright (c) 2018 Framer B.V. */ import '../../utils/fix-process-env'; /** * Check if a value is animatable. Examples: * * ✅: 100, "100px", "#fff" * ❌: "block", "url(2.jpg)" * @param value * * @internal */ declare var isAnimatable: (key: string, value: ResolvedValueTarget) => boolean; export { isAnimatable }; //# sourceMappingURL=is-animatable.d.ts.map