import * as z from "zod/v4-mini"; import { ClosedEnum } from "../../types/enums.js"; /** * Time range for activity data */ export declare const Period: { readonly Week: "week"; readonly Month: "month"; readonly Year: "year"; }; /** * Time range for activity data */ export type Period = ClosedEnum; export type GetApiV1PublicActivityRequest = { /** * Time range for activity data */ period?: Period | undefined; /** * Filter by server */ serverId?: string | undefined; /** * IANA timezone for date bucketing */ timezone?: string | undefined; }; /** @internal */ export declare const Period$outboundSchema: z.ZodMiniEnum; /** @internal */ export type GetApiV1PublicActivityRequest$Outbound = { period: string; serverId?: string | undefined; timezone: string; }; /** @internal */ export declare const GetApiV1PublicActivityRequest$outboundSchema: z.ZodMiniType; export declare function getApiV1PublicActivityRequestToJSON(getApiV1PublicActivityRequest: GetApiV1PublicActivityRequest): string; //# sourceMappingURL=get-api-v1-public-activity.d.ts.map