/** * Thin pi wrapper for the local browser configuration console. * * The HTTP server and editing service remain host-neutral; this module only * adapts pi's slash-command UI to their plain-data API. */ import type { ExtensionCommandContext } from "@earendil-works/pi-coding-agent"; import { type RegisteredHarnessInfo } from "#src/config-editor"; /** Create a `/tmux-pilot:webui` handler for one extension session. */ export declare function createConfigureCommandHandler(options: { configDir: string; harnesses: readonly RegisteredHarnessInfo[]; }): (args: string, ctx: ExtensionCommandContext) => Promise; //# sourceMappingURL=configure-command.d.ts.map