import type React from "react";
interface CursorSpotlightProps {
    /** Spotlight fill color (use rgba for transparency) */
    color?: string;
    /** Diameter of the spotlight in px */
    size?: number;
    /** CSS z-index */
    zIndex?: number;
    /** CSS mix-blend-mode */
    blend?: React.CSSProperties["mixBlendMode"];
}
export declare const CursorSpotlight: React.FC<CursorSpotlightProps>;
export {};
