import { Model } from 'mongoose';
import { NetworkSymbols } from '../../../basedauth/src/networks';
export declare enum NotificationTypes {
    FOLLOW = "FOLLOW",
    UNFOLLOW = "UNFOLLOW",
    INVITE = "INVITE",
    GIVE_INVITE_ROLE = "GIVE_INVITE_ROLE"
}
export interface INotification extends Document {
    recipient: {
        network: NetworkSymbols;
        address: string;
    };
    actor: {
        network: NetworkSymbols;
        address: string;
        name?: string;
        image?: string;
    };
    type: NotificationTypes;
    read: boolean;
    data: Record<string, any>;
    formatMessage(): string;
    createdAt: Date;
    updatedAt: Date;
}
export declare const NotificationModel: Model<INotification>;
