export declare enum StreamType { Hosting = "hosting", Live = "live", Premiere = "premiere", Rerun = "rerun" } declare type Stream = { broadcaster: { hosting: { id: string; } | null; } | null; type: string | null; }; export declare function getStreamType(stream: Stream): StreamType | undefined; export {}; //# sourceMappingURL=index.d.ts.map