import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CustomerPortalUsageSettings = { show: boolean; }; /** @internal */ export declare const CustomerPortalUsageSettings$inboundSchema: z.ZodMiniType; /** @internal */ export type CustomerPortalUsageSettings$Outbound = { show: boolean; }; /** @internal */ export declare const CustomerPortalUsageSettings$outboundSchema: z.ZodMiniType; export declare function customerPortalUsageSettingsToJSON(customerPortalUsageSettings: CustomerPortalUsageSettings): string; export declare function customerPortalUsageSettingsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customerportalusagesettings.d.ts.map