import * as Long from 'long'; import { Writer, Reader } from 'protobufjs/minimal'; export interface ZtLiveScStatusChanged { type: ZtLiveScStatusChanged_Type; maxRandomDelayMs: Long; bannedInfo: ZtLiveScStatusChanged_BannedInfo | undefined; } export interface ZtLiveScStatusChanged_BannedInfo { banReason: string; } export declare const protobufPackage = "AcFunDanmu"; export declare enum ZtLiveScStatusChanged_Type { UNKNOWN = 0, LIVE_CLOSED = 1, NEW_LIVE_OPENED = 2, LIVE_URL_CHANGED = 3, LIVE_BANNED = 4, UNRECOGNIZED = -1 } export declare function ztLiveScStatusChanged_TypeFromJSON(object: any): ZtLiveScStatusChanged_Type; export declare function ztLiveScStatusChanged_TypeToJSON(object: ZtLiveScStatusChanged_Type): string; export declare const ZtLiveScStatusChanged: { encode(message: ZtLiveScStatusChanged, writer?: Writer): Writer; decode(input: Uint8Array | Reader, length?: number): ZtLiveScStatusChanged; fromJSON(object: any): ZtLiveScStatusChanged; fromPartial(object: DeepPartial): ZtLiveScStatusChanged; toJSON(message: ZtLiveScStatusChanged): unknown; }; export declare const ZtLiveScStatusChanged_BannedInfo: { encode(message: ZtLiveScStatusChanged_BannedInfo, writer?: Writer): Writer; decode(input: Uint8Array | Reader, length?: number): ZtLiveScStatusChanged_BannedInfo; fromJSON(object: any): ZtLiveScStatusChanged_BannedInfo; fromPartial(object: DeepPartial): ZtLiveScStatusChanged_BannedInfo; toJSON(message: ZtLiveScStatusChanged_BannedInfo): unknown; }; declare type Builtin = Date | Function | Uint8Array | string | number | undefined; export declare type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export {};