import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Request to simulate the rejection of an ICT withdrawal */ export type ForceRejectIctWithdrawalRequestCreate = { /** * Full name of the ICT withdrawal resource to force a rejection on. Contains account id and ICT withdrawal id. */ name: string; /** * Reason why the ICT withdrawal is being rejected */ reason?: string | undefined; }; /** @internal */ export declare const ForceRejectIctWithdrawalRequestCreate$inboundSchema: z.ZodType; /** @internal */ export type ForceRejectIctWithdrawalRequestCreate$Outbound = { name: string; reason?: string | undefined; }; /** @internal */ export declare const ForceRejectIctWithdrawalRequestCreate$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ForceRejectIctWithdrawalRequestCreate$ { /** @deprecated use `ForceRejectIctWithdrawalRequestCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ForceRejectIctWithdrawalRequestCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ForceRejectIctWithdrawalRequestCreate$Outbound` instead. */ type Outbound = ForceRejectIctWithdrawalRequestCreate$Outbound; } export declare function forceRejectIctWithdrawalRequestCreateToJSON(forceRejectIctWithdrawalRequestCreate: ForceRejectIctWithdrawalRequestCreate): string; export declare function forceRejectIctWithdrawalRequestCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=forcerejectictwithdrawalrequestcreate.d.ts.map