import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type IncrementCommandAttemptResponse = { /** * The attempt number after the increment */ attempt: number; }; /** @internal */ export declare const IncrementCommandAttemptResponse$inboundSchema: z.ZodType; export declare function incrementCommandAttemptResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=incrementcommandattemptresponse.d.ts.map