import type { MoveEvent } from "../Network"; import type { PointActionProps } from "./types"; export declare const moveAction: { name: string; hotkey: "m"; type: "point"; localHandler: ({ point }: PointActionProps) => void; syncHandler: ({ time, connection, sprites, x, y }: MoveEvent) => void; };