import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { InstitutionCreate, InstitutionCreate$Outbound } from "./institutioncreate.js"; /** * The travel rules associated with an ICT withdrawal */ export type IctWithdrawalTravelRuleCreate = { /** * Institution representing originator or recipient of funds from an Instant Cash Transfer */ recipientInstitution: InstitutionCreate; }; /** @internal */ export declare const IctWithdrawalTravelRuleCreate$inboundSchema: z.ZodType; /** @internal */ export type IctWithdrawalTravelRuleCreate$Outbound = { recipient_institution: InstitutionCreate$Outbound; }; /** @internal */ export declare const IctWithdrawalTravelRuleCreate$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 IctWithdrawalTravelRuleCreate$ { /** @deprecated use `IctWithdrawalTravelRuleCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IctWithdrawalTravelRuleCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IctWithdrawalTravelRuleCreate$Outbound` instead. */ type Outbound = IctWithdrawalTravelRuleCreate$Outbound; } export declare function ictWithdrawalTravelRuleCreateToJSON(ictWithdrawalTravelRuleCreate: IctWithdrawalTravelRuleCreate): string; export declare function ictWithdrawalTravelRuleCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ictwithdrawaltravelrulecreate.d.ts.map