///
import { ToastOptions } from 'react-toastify';
export declare const StyledToastContainer: import("styled-components").StyledComponent>, import("styled-components").DefaultTheme, {}, never>;
declare type Action = {
label: string;
action: string;
backend: boolean;
};
declare type CustomToastData = {
title: string;
message: string;
type: 'INFO' | 'SUCCESS' | 'WARNING' | 'ERROR';
timeout: number;
urgent: boolean;
actions: Action[];
};
declare type ToastData = {
title: string;
text: string;
options?: ToastOptions;
};
export declare const toast: {
info({ title, text, options }: ToastData): void;
success({ title, text, options }: ToastData): void;
warning({ title, text, options }: ToastData): void;
danger({ title, text, options }: ToastData): void;
custom(data: CustomToastData): void;
};
export {};