import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AddressCreate, AddressCreate$Outbound } from "./addresscreate.js"; /** * An intermediary party */ export type WireWithdrawalIntermediaryCreate = { /** * The account number of the intermediary party */ account: string; /** * The name of the intermediary party */ accountTitle: string; /** * The data structure containing attributes describing the location of an underlying entity. */ address: AddressCreate; }; /** @internal */ export declare const WireWithdrawalIntermediaryCreate$inboundSchema: z.ZodType; /** @internal */ export type WireWithdrawalIntermediaryCreate$Outbound = { account: string; account_title: string; address: AddressCreate$Outbound; }; /** @internal */ export declare const WireWithdrawalIntermediaryCreate$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 WireWithdrawalIntermediaryCreate$ { /** @deprecated use `WireWithdrawalIntermediaryCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WireWithdrawalIntermediaryCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WireWithdrawalIntermediaryCreate$Outbound` instead. */ type Outbound = WireWithdrawalIntermediaryCreate$Outbound; } export declare function wireWithdrawalIntermediaryCreateToJSON(wireWithdrawalIntermediaryCreate: WireWithdrawalIntermediaryCreate): string; export declare function wireWithdrawalIntermediaryCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=wirewithdrawalintermediarycreate.d.ts.map