import { UserResponse, ExtendableGenerics, DefaultGenerics } from './types'; /** * ClientState - A container class for the client state. */ export declare class ClientState { users: { [key: string]: UserResponse; }; userChannelReferences: { [key: string]: { [key: string]: boolean; }; }; constructor(); updateUsers(users: UserResponse[]): void; updateUser(user?: UserResponse): void; updateUserReference(user: UserResponse, channelID: string): void; deleteAllChannelReference(channelID: string): void; } //# sourceMappingURL=client_state.d.ts.map