/**
 * Local Executor Handler
 *
 * Implements `aiwg local-executor serve` — boots a no-sandbox host-process
 * executor as a conformance shim over DaemonSupervisor, then registers it
 * with `aiwg serve` via the executor contract v1 handshake.
 *
 * Security note:
 *   This executor has `isolation:none`. Agent code runs directly in the host
 *   process under the same filesystem permissions as the operator. It inherits
 *   the Claude Code `--dangerously-skip-permissions` posture when invoked via
 *   the standard agent runner. Do not expose on non-loopback interfaces unless
 *   you understand the risk (see docs/local-executor-guide.md §Security).
 *
 * @issue #1181
 * @see docs/contracts/executor.v1.md
 * @see tools/ralph-external/executor-shim.mjs
 */
import type { CommandHandler } from './types.js';
/**
 * `aiwg local-executor serve` handler.
 *
 * Boots a DaemonSupervisor + ExecutorShim, registers with aiwg-serve,
 * then keeps the process alive until SIGINT/SIGTERM.
 */
export declare const localExecutorServeHandler: CommandHandler;
/**
 * Top-level `aiwg local-executor` handler.
 * Dispatches to subcommands (currently only `serve`).
 */
export declare const localExecutorHandler: CommandHandler;
//# sourceMappingURL=local-executor.d.ts.map