import type { AttackEvent } from "../Network"; import type { TargetActionProps } from "./types"; export declare const attackAction: { name: string; hotkey: "a"; type: "target"; localHandler: ({ target }: TargetActionProps) => void; syncHandler: ({ time, connection, attackers, target: targetId, }: AttackEvent) => void; };