import { InjectionToken } from "@angular/core"; export type ToastType = 'success' | 'warning' | 'danger' | 'info'; export interface ToastData { type: ToastType; message: string; config?: ToastConfig; text?: string; } export interface ToastConfig { timeout?: number; width?: number; } export declare const ASK_TOAST_CONFIG: InjectionToken;