import { Writer, Reader } from 'protobufjs/minimal'; export interface CommonStateSignalAuthorChatChangeSoundConfig { authorChatId: string; soundConfigChangeType: CommonStateSignalAuthorChatChangeSoundConfig_SoundConfigChangeType; } export declare const protobufPackage = "AcFunDanmu"; export declare enum CommonStateSignalAuthorChatChangeSoundConfig_SoundConfigChangeType { UNKNOWN = 0, OPEN_SOUND = 1, CLOSE_SOUND = 2, UNRECOGNIZED = -1 } export declare function commonStateSignalAuthorChatChangeSoundConfig_SoundConfigChangeTypeFromJSON(object: any): CommonStateSignalAuthorChatChangeSoundConfig_SoundConfigChangeType; export declare function commonStateSignalAuthorChatChangeSoundConfig_SoundConfigChangeTypeToJSON(object: CommonStateSignalAuthorChatChangeSoundConfig_SoundConfigChangeType): string; export declare const CommonStateSignalAuthorChatChangeSoundConfig: { encode(message: CommonStateSignalAuthorChatChangeSoundConfig, writer?: Writer): Writer; decode(input: Uint8Array | Reader, length?: number): CommonStateSignalAuthorChatChangeSoundConfig; fromJSON(object: any): CommonStateSignalAuthorChatChangeSoundConfig; fromPartial(object: DeepPartial): CommonStateSignalAuthorChatChangeSoundConfig; toJSON(message: CommonStateSignalAuthorChatChangeSoundConfig): 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 {};