interface Toaster {
    clear(): void;
    count(): number;
    destroy(): void;
    toast(message: string, kind?: ToastKind, opts?: ToastOptions): ToastHandle;
}

Methods