import { CustomToastType, IComponentToast } from '../../../store/slices/toast/toastSlice.types'; export declare const customToastComponentDictionary: Record; export declare const customToastCloseHandlersDictionary: Record void>; export declare const addCustomToast: (customToast: CustomToastType, currentToastId?: string) => void; export declare const removeCustomToast: (toastId: string) => void; export declare const removeAllCustomToasts: () => void; export declare const removeAllTransactionToasts: () => void; export declare const addTransactionToast: ({ toastId, totalDuration }: { toastId: string; totalDuration: number; }) => string; export declare const removeTransactionToast: (toastId: string) => void; export declare const createCustomToast: (props: CustomToastType) => string;