import type { FunAddress } from '@funkit/api-base';
import React from 'react';
import type { PaymentMethodInfo } from '~/domains/paymentMethods';
interface PaymentMethodSummaryProps {
    paymentMethodInfo: PaymentMethodInfo;
    customRecipient: FunAddress | undefined;
    isLoading: boolean;
    estimatedTime: number;
}
export declare function PaymentMethodSummary({ paymentMethodInfo, customRecipient, estimatedTime, isLoading, }: PaymentMethodSummaryProps): React.JSX.Element;
export {};
