export default class CreateGroupNotification extends GroupNotificationContent {
    constructor(creator: any, groupName: any);
    creator: string;
    groupName: string;
    formatNotification(): string;
    decode(payload: any): void;
}
import GroupNotificationContent from './groupNotification';
