import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DeleteInstructionRequest = { /** * The ID of the instruction. */ instructionId: string; }; /** @internal */ export declare const DeleteInstructionRequest$inboundSchema: z.ZodType; /** @internal */ export type DeleteInstructionRequest$Outbound = { instruction_id: string; }; /** @internal */ export declare const DeleteInstructionRequest$outboundSchema: z.ZodType; export declare function deleteInstructionRequestToJSON(deleteInstructionRequest: DeleteInstructionRequest): string; export declare function deleteInstructionRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deleteinstruction.d.ts.map