export default class AddGroupMemberNotification extends GroupNotificationContent {
    constructor(invitor: any, invitees: any);
    invitor: string;
    invitees: any[];
    formatNotification(): string;
    decode(payload: any): void;
}
import GroupNotificationContent from './groupNotification';
