import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Agreement, Agreement$Outbound } from "./agreement.js"; /** * The response for enrolling an account. */ export type EnrollAccountResponse = { /** * The collection of legal agreements that require affirmation to enroll the account in a program. */ agreements?: Array | undefined; }; /** @internal */ export declare const EnrollAccountResponse$inboundSchema: z.ZodType; /** @internal */ export type EnrollAccountResponse$Outbound = { agreements?: Array | undefined; }; /** @internal */ export declare const EnrollAccountResponse$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 EnrollAccountResponse$ { /** @deprecated use `EnrollAccountResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EnrollAccountResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EnrollAccountResponse$Outbound` instead. */ type Outbound = EnrollAccountResponse$Outbound; } export declare function enrollAccountResponseToJSON(enrollAccountResponse: EnrollAccountResponse): string; export declare function enrollAccountResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=enrollaccountresponse.d.ts.map