import { SendNotificationCommandArguments } from './types';
export declare const notification: {
    /**
     * Sends notification to be rendered in the front-end.
     */
    send: (information: SendNotificationCommandArguments) => void;
    /**
     * Decides if notifications stop being displayed.
     */
    setEnabledDisplayNotifications: (isNotificationDisplayEnabled: boolean) => void;
};
