import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CustomerPortalCustomerSettings = { allowEmailChange?: boolean | undefined; }; /** @internal */ export declare const CustomerPortalCustomerSettings$inboundSchema: z.ZodMiniType; /** @internal */ export type CustomerPortalCustomerSettings$Outbound = { allow_email_change?: boolean | undefined; }; /** @internal */ export declare const CustomerPortalCustomerSettings$outboundSchema: z.ZodMiniType; export declare function customerPortalCustomerSettingsToJSON(customerPortalCustomerSettings: CustomerPortalCustomerSettings): string; export declare function customerPortalCustomerSettingsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customerportalcustomersettings.d.ts.map