export interface PointerInteractionOptions { cursor: string; onMove: (event: PointerEvent) => void; onEnd?: () => void; } export declare function usePointerInteraction(): { startInteraction: (options: PointerInteractionOptions) => void; cleanup: () => void; };