import { FormbirdInjectorService } from '../injector/formbird-injector.service';
export declare class NotificationService {
    private injector;
    ajsService: any;
    constructor(injector: FormbirdInjectorService);
    /**
     * Display toast messages
     */
    printMessage(message: any, messageType?: any, title?: any, position?: any, preventDuplicate?: any, displayDesktopNotification?: any, onClickFunction?: any, timeOut?: any, isPermanent?: any): any;
    success(message: any, title?: any, displayDesktopNotification?: any): any;
    error(message: any, title?: any, displayDesktopNotification?: any): any;
    warning(message: any, title?: any, displayDesktopNotification?: any): any;
}
