import React from 'react';
import type { Address } from 'viem';
interface WithdrawSuccessProps {
    depositAddress: Address;
    token: string;
    tokenIconSrc: string;
    chainId: string;
    txHash: string;
    bottomBarId: string;
    onNewWithdrawal: () => void;
    onClose: () => void;
}
export declare const WithdrawSuccess: ({ depositAddress, bottomBarId, onNewWithdrawal, onClose, }: WithdrawSuccessProps) => React.JSX.Element;
export {};
