import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The number of members users in the organization, split by role. */ export type ByRole = { /** * The number of users with the admin role. */ admin?: number | undefined; /** * The number of users with the API access role. */ apiAccess?: number | undefined; }; export type MemberCounts = { /** * The number of members users in the organization, split by role. */ byRole: ByRole; /** * The total number of members users in the organization. */ total: number; }; /** @internal */ export declare const ByRole$inboundSchema: z.ZodType; export declare function byRoleFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemberCounts$inboundSchema: z.ZodType; export declare function memberCountsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=membercounts.d.ts.map