import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CurrentActiveUsers = { /** * Number of current Monthly Active Users, in the specified departments. */ monthlyActiveUsers?: number | undefined; /** * Number of current Weekly Active Users, in the specified departments. */ weeklyActiveUsers?: number | undefined; }; /** @internal */ export declare const CurrentActiveUsers$inboundSchema: z.ZodType; export declare function currentActiveUsersFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=currentactiveusers.d.ts.map