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