import { Notification } from "aurelia-notification";
import "humane-js/themes/libnotify.css";
export declare class NotificationService {
    private notification;
    constructor(notification: Notification);
    note(message: string, options?: any): void;
    success(message: string, options?: any): void;
    error(message: string, options?: any): void;
    info(message: string, options?: any): void;
}
