import type { CliContext } from '../context.js'; import type { CommandResult, Invocation } from './registry.js'; /** * Run a command that calls a Seam API endpoint: assemble the params, * prompt for what is missing, make the request, and run any follow-ups * the response calls for. */ export declare const executeApiCommand: (invocation: Invocation, ctx: CliContext) => Promise;