import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdk-validation-error.js"; export type StatsTodayResponse = { activeStreams: number; /** * Validated plays (>= 2 min) */ todayPlays: number; /** * Hours watched today */ watchTimeHours: number; alertsLast24h: number; activeUsersToday: number; timestamp: Date; }; /** @internal */ export declare const StatsTodayResponse$inboundSchema: z.ZodMiniType; export declare function statsTodayResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=stats-today-response.d.ts.map