import { type MemberType } from './types'; declare const getIMUserSig: (userId: string) => Promise<{ sig: string; }>; declare const getMemberByGroupId: (groupId: string) => Promise<{ list: MemberType[]; }>; export { getIMUserSig, getMemberByGroupId };