import { RequestClient } from './request'; export declare class PadplusRoom { private requestClient; constructor(requestClient: RequestClient); setTopic: (roomId: string, topic: string) => Promise; getRoomInfo: (roomId: string) => Promise; deleteRoomMember(roomId: string, contactId: string): Promise; getRoomMembers: (uin: string, roomId: string) => Promise; getRoomQrcode: (roomId: string) => Promise; setAnnouncement: (roomId: string, announcement: string) => Promise; getAnnouncement: (roomId: string) => Promise; addMember: (roomId: string, memberId: string) => Promise; createRoom: (topic: string, memberIdList: string[]) => Promise; quitRoom: (roomId: string) => Promise; getRoomInvitationDetail(inviteUrl: string, inviteFrom: string): Promise; } //# sourceMappingURL=room.d.ts.map