import type { BuildEvent } from "../Network"; import type { PointActionProps } from "./types"; export declare const buildAction: { name: string; hotkey: "b"; type: "point"; localHandler: ({ point }: PointActionProps) => void; syncHandler: ({ x, y, time, connection, obstruction, builder, }: BuildEvent) => void; };