export default class TipNotificationMessageContent extends NotificationMessageContent {
    tip: string;
    formatNotification(): string;
    digest(): string;
    decode(payload: any): void;
}
import NotificationMessageContent from './notificationMessageContent';
