import type { ApiBlueprint } from './index.js'; export declare const getCommandBlueprintDef: (cmd: string[], helpers: { blueprint: ApiBlueprint; }) => import("@seamapi/blueprint").Endpoint; /** * The top level response key documented for a command, * e.g., `devices` for `seam devices list`. * * Returns null when the command is not in the blueprint, * or when it does not respond with a resource. */ export declare const getResponseKey: (command: string[], ctx: { blueprint: ApiBlueprint; }) => string | null;