import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TransferAccount = { accountID: string; email: string; displayName: string; }; /** @internal */ export declare const TransferAccount$inboundSchema: z.ZodType; /** @internal */ export type TransferAccount$Outbound = { accountID: string; email: string; displayName: string; }; /** @internal */ export declare const TransferAccount$outboundSchema: z.ZodType; export declare function transferAccountToJSON(transferAccount: TransferAccount): string; export declare function transferAccountFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=transferaccount.d.ts.map