import OctoBot from './bot'; import OctoUser from './user'; export default abstract class OctoGroup { groupId: string; bot: OctoBot; constructor(groupId: string, bot: OctoBot); abstract getOwnerId(): Promise; abstract getGroupMember(): Promise; abstract getGroupName(): Promise; abstract isUserInGroup(uid: string): Promise; } //# sourceMappingURL=group.d.ts.map