import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Describes the response body of the /getusercount API call */ export type GetUserCountResponse = { /** * Number of users corresponding to the specified custom datasource. */ userCount?: number | undefined; }; /** @internal */ export declare const GetUserCountResponse$inboundSchema: z.ZodType; export declare function getUserCountResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getusercountresponse.d.ts.map