import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Institution representing originator or recipient of funds from an Instant Cash Transfer */ export type InstitutionCreate = { /** * Account id at institution */ accountId: string; /** * Name of the institution */ title: string; }; /** @internal */ export declare const InstitutionCreate$inboundSchema: z.ZodType; /** @internal */ export type InstitutionCreate$Outbound = { account_id: string; title: string; }; /** @internal */ export declare const InstitutionCreate$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 InstitutionCreate$ { /** @deprecated use `InstitutionCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `InstitutionCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `InstitutionCreate$Outbound` instead. */ type Outbound = InstitutionCreate$Outbound; } export declare function institutionCreateToJSON(institutionCreate: InstitutionCreate): string; export declare function institutionCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=institutioncreate.d.ts.map