import type { StopEvent } from "../Network"; import type { ImmediateActionProps } from "./types"; export declare const stopAction: { name: string; hotkey: "s"; type: "custom"; localHandler: ({ player }: ImmediateActionProps) => void; syncHandler: ({ time, connection, sprites }: StopEvent) => void; };