import { Toast } from "./index.js";
import { Notification } from "../types/notification.js";
export declare class ToastNotification extends Notification {
    message: string;
    iconUrl?: string;
    delay?: number;
    autoHide?: boolean;
    animation?: boolean;
    toastService?: Toast;
    contextualClass?: string;
    constructor({ title, message, iconUrl, delay, autoHide, animation, toastService, contextualClass, channel, $event, $context, }: {
        title?: string;
        message: string;
        iconUrl?: string;
        delay?: number;
        autoHide?: boolean;
        animation?: boolean;
        toastService?: Toast;
        contextualClass?: string;
        channel?: string;
        $event?: CustomEvent;
        $context?: any;
    });
}
