import { ToastPosition } from 'decentraland-ui'; import { Toast } from './types'; export declare const SHOW_TOAST = "Show toast"; export declare const showToast: (toast: Omit, position?: ToastPosition) => import("typesafe-actions/dist/types").PayloadAction<"Show toast", { toast: Omit; position: ToastPosition | undefined; }>; export type ShowToastAction = ReturnType; export declare const RENDER_TOAST = "Render toast"; export declare const renderToast: (id: number) => import("typesafe-actions/dist/types").PayloadAction<"Render toast", { id: number; }>; export type RenderToastAction = ReturnType; export declare const HIDE_TOAST = "Hide toast"; export declare const hideToast: (id: number) => import("typesafe-actions/dist/types").PayloadAction<"Hide toast", { id: number; }>; export type HideToastAction = ReturnType; export declare const HIDE_ALL_TOASTS = "Hide all toasts"; export declare const hideAllToasts: () => import("typesafe-actions/dist/types").EmptyAction<"Hide all toasts">; export type HideAllToastsAction = ReturnType;