import { Writer, Reader } from 'protobufjs/minimal'; export interface CommonStateSignalAuthorChatEnd { authorChatId: string; endType: CommonStateSignalAuthorChatEnd_EndType; endLiveId: string; } export declare const protobufPackage = "AcFunDanmu"; export declare enum CommonStateSignalAuthorChatEnd_EndType { UNKNOWN = 0, CANCEL_BY_INVITER = 1, END_BY_INVITER = 2, END_BY_INVITEE = 3, INVITEE_REJECT = 4, INVITEE_TIMEOUT = 5, INVITEE_HEARTBEAT_TIMEOUT = 6, INVITER_HEARTBEAT_TIMEOUT = 7, PEER_LIVE_STOPPED = 8, UNRECOGNIZED = -1 } export declare function commonStateSignalAuthorChatEnd_EndTypeFromJSON(object: any): CommonStateSignalAuthorChatEnd_EndType; export declare function commonStateSignalAuthorChatEnd_EndTypeToJSON(object: CommonStateSignalAuthorChatEnd_EndType): string; export declare const CommonStateSignalAuthorChatEnd: { encode(message: CommonStateSignalAuthorChatEnd, writer?: Writer): Writer; decode(input: Uint8Array | Reader, length?: number): CommonStateSignalAuthorChatEnd; fromJSON(object: any): CommonStateSignalAuthorChatEnd; fromPartial(object: DeepPartial): CommonStateSignalAuthorChatEnd; toJSON(message: CommonStateSignalAuthorChatEnd): 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 {};