/**
 * Action to push a generic notification
 * @param {Object} notification Notification to push
 * @returns {Object}
 */
export function pushGeneric(notification: Object): Object;
/**
 * Action to specifically push an info notification
 * @param {Object} notification Notification to push
 * @returns {Object}
 */
export function pushInfo(notification: Object): Object;
/**
 * Action to specifically push a warning notification
 * @param {Object} notification Notification to push
 * @returns {Object}
 */
export function pushWarning(notification: Object): Object;
/**
 * Action to specifically push an error notification
 * @param {Object} notification Notification to push
 * @returns {Object}
 */
export function pushError(notification: Object): Object;
