/// import { SocketConfig } from "../../Models"; export declare const makeGroupsAdittionalSocket: (config: SocketConfig) => { groupMetadata: (jid: string) => Promise; groupCreate: (subject: string, participants: string[]) => Promise; communityCreate: (subject: string) => Promise; groupLeave: (id: string) => Promise; groupUpdateSubject: (jid: string, subject: string) => Promise; groupRequestParticipantsList: (jid: string) => Promise<{ [key: string]: string; }[]>; groupRequestParticipantsUpdate: (jid: string, participants: string[], action: "reject" | "approve") => Promise<{ status: string; jid: string; }[]>; groupParticipantsUpdate: (jid: string, participants: string[], action: import("../../Models").ParticipantAction) => Promise<{ status: string; jid: string; content: import("../../Internal").BinaryNode; }[]>; groupUpdateDescription: (jid: string, description?: string | undefined) => Promise; groupInviteCode: (jid: string) => Promise; groupRevokeInvite: (jid: string) => Promise; groupAcceptInvite: (code: string) => Promise; groupAcceptInviteV4: (key: string | import("../../Models").WAMessageKey, inviteMessage: import("../enc").proto.Message.IGroupInviteMessage) => Promise; groupGetInviteInfo: (code: string) => Promise; groupToggleEphemeral: (jid: string, ephemeralExpiration: number) => Promise; groupSettingUpdate: (jid: string, setting: "announcement" | "locked" | "not_announcement" | "unlocked") => Promise; groupFetchAllParticipating: () => Promise<{ [_: string]: import("../../Models").GroupMetadata; }>; processingMutex: { mutex(code: () => T | Promise): Promise; }; fetchPrivacySettings: (force?: boolean) => Promise<{ [_: string]: string; }>; upsertMessage: (msg: import("../enc").proto.IWebMessageInfo, type: import("../../Models").MessageUpsertType) => Promise; appPatch: (patchCreate: import("../../Models").WAPatchCreate) => Promise; sendPresenceUpdate: (type: import("../../Models").WAPresence, toJid?: string | undefined) => Promise; presenceSubscribe: (toJid: string, tcToken?: Buffer | undefined) => Promise; profilePictureUrl: (jid: any, type?: string, timeoutMs?: number | undefined) => Promise; onWhatsApp: (...jids: string[]) => Promise<{ exists: boolean; jid: string; }[]>; fetchBlocklist: () => Promise; fetchStatus: (jid: string) => Promise<{ status: string | undefined; setAt: Date; } | undefined>; updateProfilePicture: (jid: string, content: import("../../Models").WAMediaUpload) => Promise; removeProfilePicture: (jid: string) => Promise; updateProfileStatus: (status: string) => Promise; updateProfileName: (name: string) => Promise; updateBlockStatus: (jid: string, action: "block" | "unblock") => Promise; updateLastSeenPrivacy: (value: import("../../Models").WAPrivacyValue) => Promise; updateOnlinePrivacy: (value: import("../../Models").WAPrivacyOnlineValue) => Promise; updateProfilePicturePrivacy: (value: import("../../Models").WAPrivacyValue) => Promise; updateStatusPrivacy: (value: import("../../Models").WAPrivacyValue) => Promise; updateReadReceiptsPrivacy: (value: import("../../Models").WAReadReceiptsValue) => Promise; updateGroupsAddPrivacy: (value: import("../../Models").WAPrivacyValue) => Promise; updateDefaultDisappearingMode: (duration: number) => Promise; getBusinessProfile: (jid: string) => Promise; resyncAppState: (collections: readonly ("critical_block" | "critical_unblock_low" | "regular_high" | "regular_low" | "regular")[], isInitialSync: boolean) => Promise; chatModify: (mod: import("../../Models").ChatModification, jid: string) => Promise; cleanDirtyBits: (type: "account_sync" | "groups", fromTimestamp?: string | number | undefined) => Promise; addChatLabel: (jid: string, labelId: string) => Promise; removeChatLabel: (jid: string, labelId: string) => Promise; addMessageLabel: (jid: string, messageId: string, labelId: string) => Promise; removeMessageLabel: (jid: string, messageId: string, labelId: string) => Promise; logout: (msg?: string | undefined) => Promise; end: (error: Error | undefined, qr?: boolean) => void; onUnexpectedError: (err: Error | import("@hapi/boom").Boom, msg: string) => void; uploadPreKeys: (count?: number) => Promise; uploadPreKeysToServerIfRequired: () => Promise; requestPairingCode: (phoneNumber: string) => Promise; waitForConnectionUpdate: (check: (u: Partial) => boolean | undefined, timeoutMs?: number | undefined) => Promise; addInfoObjects: (name: any, extend: any) => boolean; getUser: (name: any) => any; checkAddUser: (name: any) => boolean; checkUser: (name: any) => boolean; sessionsDir: (sessionId?: string | undefined, dir?: string) => string; checkSession: (name: any) => boolean; getSessionKey: (name: any) => string | false; searchObjects: (phone: any) => any; getAll: () => any; checkClient: (name: any) => boolean; deleteToken: (name: any) => boolean; deleteSession: (name: any) => boolean; removeInfoObjects: (name: any, key: any) => boolean; type: "md"; ws: any; ev: import("../../Models").OrkestralEventEmitter & { process(handler: (events: Partial) => void | Promise): () => void; buffer(): void; createBufferedFunction(work: (...args: A) => Promise): (...args: A) => Promise; flush(force?: boolean | undefined): boolean; isBuffering(): boolean; }; authState: { creds: import("../../Models").AuthenticationCreds; keys: import("../../Models").SignalKeyStoreWithTransaction; }; signalRepository: import("../../Models").SignalRepository; user: import("../../Models").Contact | undefined; generateMessageTag: () => string; query: (node: import("../../Internal").BinaryNode, timeoutMs?: number | undefined) => Promise; waitForMessage: (msgId: string, timeoutMs?: number | undefined) => Promise; waitForSocketOpen: () => Promise; sendRawMessage: (data: Uint8Array | Buffer) => Promise; sendNode: (frame: import("../../Internal").BinaryNode) => Promise; close: () => void; createGroup: (name: string, participants: any) => Promise<{}>; addParticipantsGroup: (id: string, participants: any) => Promise<{}>; createCommunity: (name: string) => Promise<{}>; approveParticipantsGroup: (id: string, participants: any, action: "approve" | "reject") => Promise<{}>; removeParticipantsGroup: (id: string, participants: any) => Promise<{}>; getParticipantsPending: (id: string) => Promise<{}>; addGroupAdmins: (id: string, participants: any) => Promise<{}>; removeGroupAdmins: (id: string, participants: any) => Promise<{}>; groupTitle: (id: string, title: string) => Promise<{}>; groupDescription: (id: string, description: string) => Promise<{}>; leaveGroup: (id: string) => Promise<{}>; getGroupLink: (id: string) => Promise<{}>; joinGroup: (code: string) => Promise<{}>; setGroupSettings: (id: string, option: listSettings, boolean: boolean) => Promise<{}>; revokeGroupLink: (id: string) => Promise<{}>; }; export declare enum GroupSettingChange { messageSend = "announcement", noMessageSend = "not_announcement", settingsChange = "locked", noSettingsChange = "unlocked" } type listSettings = ('message' | 'settings'); export {};