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