import { Notification } from '../types/props'; import { Sound } from '../lib/notification'; /** * Send notification which will be displayed in the `` component. * @param notification Notification object * @param playSound Sound type, if sound type is sent plays that sound with the notification. * @returns Return value of emitting the event */ export declare const sendNotification: (notification: Notification, playSound?: Sound | undefined) => boolean;