export interface INotification {
    version: string;
    createdOn: number;
    id: number;
    type: string;
    data: any;
    walletId: string;
    creatorId: string;
    isCreator: boolean;
}
export declare class Notification {
    version: string;
    createdOn: number;
    id: string | number;
    type: string;
    data: any;
    walletId: string;
    creatorId: string;
    isCreator: boolean;
    static create(opts: any): Notification;
    static fromObj(obj: any): Notification;
}
//# sourceMappingURL=notification.d.ts.map