import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Mode } from "./mode.js"; /** * The account that created the onboarding invite. */ export type OnboardingPartnerAccount = { /** * The account ID of the partner that created the invite. */ accountID: string; /** * The operating mode for an account. */ accountMode: Mode; /** * The name of the Moov account used to create the onboarding invite. */ displayName: string; }; /** @internal */ export declare const OnboardingPartnerAccount$inboundSchema: z.ZodType; /** @internal */ export type OnboardingPartnerAccount$Outbound = { accountID: string; accountMode: string; displayName: string; }; /** @internal */ export declare const OnboardingPartnerAccount$outboundSchema: z.ZodType; export declare function onboardingPartnerAccountToJSON(onboardingPartnerAccount: OnboardingPartnerAccount): string; export declare function onboardingPartnerAccountFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=onboardingpartneraccount.d.ts.map