/**
 * @class
 */
export class Notification {
    /**
     *
     * @param {string} title
     * @param {string} description
     * @param {string} image URL to image
     * @param {string[]} classList
     * @constructor
     */
    constructor({ title, description, image, classList }: string);
    title: any;
    description: any;
    image: ObservedValue;
    classList: any;
    /**
     * @readonly
     * @type {boolean}
     */
    readonly isNotification: boolean;
}
import ObservedValue from '../../core/model/ObservedValue.js';
//# sourceMappingURL=Notification.d.ts.map