import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The external account information */ export type ExternalAccountCreate = { /** * The account identifier The account number for external communications */ accountNumber: string; /** * The NSCC brokerage / clearing house identifier */ participantNumber: string; }; /** @internal */ export declare const ExternalAccountCreate$inboundSchema: z.ZodType; /** @internal */ export type ExternalAccountCreate$Outbound = { account_number: string; participant_number: string; }; /** @internal */ export declare const ExternalAccountCreate$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 ExternalAccountCreate$ { /** @deprecated use `ExternalAccountCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ExternalAccountCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ExternalAccountCreate$Outbound` instead. */ type Outbound = ExternalAccountCreate$Outbound; } export declare function externalAccountCreateToJSON(externalAccountCreate: ExternalAccountCreate): string; export declare function externalAccountCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=externalaccountcreate.d.ts.map