import type { HoldPositionEvent } from "../Network"; import type { Player } from "../players/Player"; export declare const holdPositionAction: { name: string; hotkey: "h"; type: "custom"; localHandler: ({ player }: { player: Player; }) => void; syncHandler: ({ time, connection, sprites }: HoldPositionEvent) => void; };