import React from 'react';
import type { FunkitCheckoutQuoteResult } from '../../domains/quote';
interface WithdrawalCallbackSuccessProps {
    bottomBarId: string;
    onClose: () => void;
    onNewWithdrawal: () => void;
    quote: FunkitCheckoutQuoteResult | undefined;
}
export declare const WithdrawalCallbackSuccess: ({ bottomBarId, onClose, onNewWithdrawal, quote, }: WithdrawalCallbackSuccessProps) => React.JSX.Element;
export {};
