import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdk-validation-error.js"; import { ServerStreamSummary } from "./server-stream-summary.js"; export type StreamsSummary = { total: number; transcodes: number; directStreams: number; directPlays: number; totalBitrate: string; byServer: Array; }; /** @internal */ export declare const StreamsSummary$inboundSchema: z.ZodMiniType; export declare function streamsSummaryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=streams-summary.d.ts.map