import { Cursor } from '../../hooks/useCursors';

export interface UserCursorOptions {
    transitionDuration?: number;
    getUserColor?: (userId: string) => string;
}
export interface UserCursorProps extends Cursor, UserCursorOptions {
    userId: string;
}
export default function UserCursor({ userId, percentX, pageY, transitionDuration, getUserColor }: UserCursorProps): import("react/jsx-runtime").JSX.Element;
