import { LyraJSAPIMethodBrowser } from './index'; export declare enum EIconMap { exception = "offline", success = "success", fail = "fail", none = "info" } export interface IToastOptions { content?: string; type?: keyof typeof EIconMap; duration?: number; } export interface IToastSuccess { toastCallback: boolean; } export interface IHideToastSuccess { success: boolean; } export interface IToastAPI { toast: LyraJSAPIMethodBrowser; hideToast: LyraJSAPIMethodBrowser<{}, IHideToastSuccess, true>; } //# sourceMappingURL=toast.d.ts.map