import type { TFunction } from 'i18next';
import type { ErrorNotification } from '../../components/FunNotification/FunNotification';
import type { CheckoutConfirmationError } from '../../domains/checkoutErrors';
export declare function getErrorNotification({ quoteErrorObject, withdrawalError, targetAssetFetchError, riskCheckError, t, }: {
    quoteErrorObject: Error | null;
    withdrawalError: CheckoutConfirmationError | null;
    targetAssetFetchError: Error | null;
    riskCheckError: Error | null;
    t: TFunction;
}): ErrorNotification | null;
