import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type UpdateInstructionRequest = { /** * The ID of the instruction. */ instructionId: string; updateInstructionParams: components.UpdateInstructionParams; }; /** @internal */ export declare const UpdateInstructionRequest$inboundSchema: z.ZodType; /** @internal */ export type UpdateInstructionRequest$Outbound = { instruction_id: string; UpdateInstructionParams: components.UpdateInstructionParams$Outbound; }; /** @internal */ export declare const UpdateInstructionRequest$outboundSchema: z.ZodType; export declare function updateInstructionRequestToJSON(updateInstructionRequest: UpdateInstructionRequest): string; export declare function updateInstructionRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updateinstruction.d.ts.map