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