import type React from "react";
interface CursorProps {
    zIndex?: number;
    showOnTouch?: boolean;
    trailLength?: number;
    /**
     * When true, the cursor squashes and stretches in the direction of travel
     * based on spring velocity. Applies only to circle shapes without a label.
     */
    elongate?: boolean;
}
export declare const Cursor: React.FC<CursorProps>;
export {};
