import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Feature flags exposed to the customer portal. */ export type CustomerOrganizationFeatureSettings = { /** * Whether the member model is enabled for this organization. */ memberModelEnabled: boolean; }; /** @internal */ export declare const CustomerOrganizationFeatureSettings$inboundSchema: z.ZodMiniType; export declare function customerOrganizationFeatureSettingsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customerorganizationfeaturesettings.d.ts.map