import type { CSSProperties } from 'react'; export type LiquidCursorProps = { className?: string; colors?: readonly string[]; maxPoints?: number; style?: CSSProperties; }; export declare const LiquidCursor: ({ className, colors, maxPoints, style, }: LiquidCursorProps) => import("react/jsx-runtime").JSX.Element;