import { proto } from '../../WAProto/index.js'; import type { GroupMetadata, ParticipantAction, SocketConfig, WAMessageKey } from '../Types/index.js'; import { type BinaryNode } from '../WABinary/index.js'; export declare const makeGroupsSocket: (config: SocketConfig) => { groupMetadata: (jid: string) => Promise; groupCreate: (subject: string, participants: 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: "approve" | "reject") => Promise<{ status: string; jid: string | undefined; }[]>; groupParticipantsUpdate: (jid: string, participants: string[], action: ParticipantAction) => Promise<{ status: string; jid: string | undefined; content: BinaryNode; }[]>; groupUpdateDescription: (jid: string, description?: string) => Promise; groupInviteCode: (jid: string) => Promise; groupRevokeInvite: (jid: string) => Promise; groupAcceptInvite: (code: string) => Promise; /** * revoke a v4 invite for someone * @param groupJid group jid * @param invitedJid jid of person you invited * @returns true if successful */ groupRevokeInviteV4: (groupJid: string, invitedJid: string) => Promise; /** * accept a GroupInviteMessage * @param key the key of the invite message, or optionally only provide the jid of the person who sent the invite * @param inviteMessage the message to accept */ groupAcceptInviteV4: (key: string | WAMessageKey, inviteMessage: proto.Message.IGroupInviteMessage) => Promise; groupGetInviteInfo: (code: string) => Promise; groupToggleEphemeral: (jid: string, ephemeralExpiration: number) => Promise; groupSettingUpdate: (jid: string, setting: "announcement" | "not_announcement" | "locked" | "unlocked") => Promise; groupMemberAddMode: (jid: string, mode: "admin_add" | "all_member_add") => Promise; groupJoinApprovalMode: (jid: string, mode: "on" | "off") => Promise; groupFetchAllParticipating: () => Promise<{ [_: string]: GroupMetadata; }>; createCallLink: (type: "audio" | "video", event?: { startTime: number; }, timeoutMs?: number) => Promise; getBotListV2: () => Promise; processingMutex: { mutex(code: () => Promise | T): Promise; }; fetchPrivacySettings: (force?: boolean) => Promise<{ [_: string]: string; }>; upsertMessage: (msg: import("../Types/index.js").WAMessage, type: import("../Types/index.js").MessageUpsertType) => Promise; appPatch: (patchCreate: import("../Types/index.js").WAPatchCreate) => Promise; sendPresenceUpdate: (type: import("../Types/index.js").WAPresence, toJid?: string) => Promise; presenceSubscribe: (toJid: string, tcToken?: Buffer) => Promise; profilePictureUrl: (jid: string, type?: "preview" | "image", timeoutMs?: number) => Promise; fetchBlocklist: () => Promise<(string | undefined)[]>; fetchStatus: (...jids: string[]) => Promise; fetchDisappearingDuration: (...jids: string[]) => Promise; updateProfilePicture: (jid: string, content: import("../Types/index.js").WAMediaUpload, dimensions?: { width: number; height: number; }) => Promise; removeProfilePicture: (jid: string) => Promise; updateProfileStatus: (status: string) => Promise; updateProfileName: (name: string) => Promise; updateBlockStatus: (jid: string, action: "block" | "unblock") => Promise; updateDisableLinkPreviewsPrivacy: (isPreviewsDisabled: boolean) => Promise; updateCallPrivacy: (value: import("../Types/index.js").WAPrivacyCallValue) => Promise; updateMessagesPrivacy: (value: import("../Types/index.js").WAPrivacyMessagesValue) => Promise; updateLastSeenPrivacy: (value: import("../Types/index.js").WAPrivacyValue) => Promise; updateOnlinePrivacy: (value: import("../Types/index.js").WAPrivacyOnlineValue) => Promise; updateProfilePicturePrivacy: (value: import("../Types/index.js").WAPrivacyValue) => Promise; updateStatusPrivacy: (value: import("../Types/index.js").WAPrivacyValue) => Promise; updateReadReceiptsPrivacy: (value: import("../Types/index.js").WAReadReceiptsValue) => Promise; updateGroupsAddPrivacy: (value: import("../Types/index.js").WAPrivacyGroupAddValue) => Promise; updateDefaultDisappearingMode: (duration: number) => Promise; getBusinessProfile: (jid: string) => Promise; resyncAppState: (collections: readonly ("critical_unblock_low" | "regular_high" | "regular_low" | "critical_block" | "regular")[], isInitialSync: boolean) => Promise; chatModify: (mod: import("../Types/index.js").ChatModification, jid: string) => Promise; cleanDirtyBits: (type: "account_sync" | "groups", fromTimestamp?: number | string) => Promise; addOrEditContact: (jid: string, contact: proto.SyncActionValue.IContactAction) => Promise; removeContact: (jid: string) => Promise; addLabel: (jid: string, labels: import("../Types/Label.js").LabelActionBody) => 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; star: (jid: string, messages: { id: string; fromMe?: boolean; }[], star: boolean) => Promise; addOrEditQuickReply: (quickReply: import("../Types/Bussines.js").QuickReplyAction) => Promise; removeQuickReply: (timestamp: string) => Promise; type: "md"; ws: import("./Client/websocket.js").WebSocketClient; ev: import("../Types/index.js").BaileysEventEmitter & { process(handler: (events: Partial) => void | Promise): () => void; buffer(): void; createBufferedFunction(work: (...args: A) => Promise): (...args: A) => Promise; flush(): boolean; isBuffering(): boolean; }; authState: { creds: import("../Types/index.js").AuthenticationCreds; keys: import("../Types/index.js").SignalKeyStoreWithTransaction; }; signalRepository: import("../Types/index.js").SignalRepositoryWithLIDStore; user: import("../Types/index.js").Contact | undefined; generateMessageTag: () => string; query: (node: BinaryNode, timeoutMs?: number) => Promise; waitForMessage: (msgId: string, timeoutMs?: number | undefined) => Promise; waitForSocketOpen: () => Promise; sendRawMessage: (data: Uint8Array | Buffer) => Promise; sendNode: (frame: BinaryNode) => Promise; logout: (msg?: string) => Promise; end: (error: Error | undefined) => void; onUnexpectedError: (err: Error | import("@hapi/boom").Boom, msg: string) => void; uploadPreKeys: (count?: number, retryCount?: number) => Promise; uploadPreKeysToServerIfRequired: () => Promise; digestKeyBundle: () => Promise; rotateSignedPreKey: () => Promise; requestPairingCode: (phoneNumber: string, customPairingCode?: string) => Promise; wamBuffer: import("../index.js").BinaryInfo; waitForConnectionUpdate: (check: (u: Partial) => Promise, timeoutMs?: number) => Promise; sendWAMBuffer: (wamBuffer: Buffer) => Promise; executeUSyncQuery: (usyncQuery: import("../index.js").USyncQuery) => Promise; onWhatsApp: (...phoneNumber: string[]) => Promise<{ jid: string; exists: boolean; }[] | undefined>; }; export declare const extractGroupMetadata: (result: BinaryNode) => GroupMetadata; export type GroupsSocket = ReturnType; //# sourceMappingURL=groups.d.ts.map