/** Assemble the three tools for one driver × strategy. Written once — every platform * gets identical tool names, schemas, and wording by construction. */ import type { GuiDriver } from "../driver.ts"; import { type GuiToolSpec, type Strategy } from "../types.ts"; export declare function createGuiTools(driver: GuiDriver, strategy: Strategy): GuiToolSpec[];