import type { RegisteredCommand } from "@oh-my-pi/pi-coding-agent"; import type { AcpRuntime } from "./runtime.js"; type CommandOptions = Omit; export declare function makeCommands(runtime: AcpRuntime): Array<{ name: string; options: CommandOptions; }>; export {};