import * as z from "zod/v4-mini"; import { OpenEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdk-validation-error.js"; export declare const Type: { readonly Plex: "plex"; readonly Jellyfin: "jellyfin"; readonly Emby: "emby"; }; export type Type = OpenEnum; export type ServerStatus = { id: string; name: string; type: Type; online: boolean; activeStreams: number; }; /** @internal */ export declare const Type$inboundSchema: z.ZodMiniType; /** @internal */ export declare const ServerStatus$inboundSchema: z.ZodMiniType; export declare function serverStatusFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=server-status.d.ts.map