import { TokenWithBalance } from '@argent/x-shared'; import { EstimatedFees } from '@argent/x-shared/simulation'; import { FC } from 'react'; export interface ParsedFeeError { title?: string; message: string; } export interface FeeEstimationProps { amountCurrencyValue?: string; fee?: EstimatedFees; feeToken: TokenWithBalance; parsedFeeEstimationError?: ParsedFeeError; showError: boolean; showEstimateError: boolean; showFeeError: boolean; suggestedMaxFeeCurrencyValue?: string; userClickedAddFunds?: boolean; needsDeploy?: boolean; onOpenFeeTokenPicker?: () => void; allowFeeTokenSelection?: boolean; } export declare const TransactionFailureAccordion: FC>;