import { HaloCommandObject } from "../../types.js"; declare function haloGateExecutorSetHost(newGatewayServerHost: string): void; interface ExecutorLogCallback { (message: string): void; } interface ExecutorNewCommandCallback { (command: HaloCommandObject): void; } declare function haloGateExecutorCreateWs(logCallback: ExecutorLogCallback, newCommandCallback: ExecutorNewCommandCallback): Promise; declare function haloGateExecutorUserConfirm(logCallback: ExecutorLogCallback): Promise; export { haloGateExecutorSetHost, haloGateExecutorCreateWs, haloGateExecutorUserConfirm }; //# sourceMappingURL=executor.d.ts.map