import { El } from "../types"; /** * Create and return an animation for the cursor. */ declare let setCursorAnimation: ({ cursor, frames, options, }: { cursor: El; frames: AnimationKeyFrame[]; options: Partial; }) => Animation; export default setCursorAnimation;