import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type CompleteCommandResponse = { /** * Whether the command transitioned; false if it was already terminal */ updated: boolean; }; /** @internal */ export declare const CompleteCommandResponse$inboundSchema: z.ZodType; export declare function completeCommandResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=completecommandresponse.d.ts.map