/** * @packageDocumentation * @module DaVinci_API */ import { NOTIFICATION_TYPE } from '../models/NotificationType'; /** * This sends notification to framework which will be displayed in toolbar. * To Do : Different notifications based on type. * @param message Message to be displayed on toolbar. * @param notificationType Type of notification. */ export declare function sendNotification(message: string, notificationType?: NOTIFICATION_TYPE): Promise; /** * Apps that handle displaying notifications should use this to register to receive notifications. * * - See [[sendNotification]] * @param {(message: string, notificationType?: NOTIFICATION_TYPE) => Promise} callback */ export declare function registerSendNotification(callback: (message: string, notificationType?: NOTIFICATION_TYPE) => Promise): Promise;