import * as z from "zod/v4"; import * as models from "../index.js"; export type CompleteCommandGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type CompleteCommandRequest = { /** * Unique identifier for the command. */ id: string; completeCommandRequest?: models.CompleteCommandRequest | undefined; }; /** @internal */ export type CompleteCommandRequest$Outbound = { id: string; CompleteCommandRequest?: models.CompleteCommandRequest$Outbound | undefined; }; /** @internal */ export declare const CompleteCommandRequest$outboundSchema: z.ZodType; export declare function completeCommandRequestToJSON(completeCommandRequest: CompleteCommandRequest): string; //# sourceMappingURL=completecommand.d.ts.map