import { CustomRequestOptions } from '../../common/request';
import { PaymentAcceptanceListResponseOfPaymentAcceptancePaymentAttempt } from '../../model/paymentAcceptanceListResponseOfPaymentAcceptancePaymentAttempt';
import { PaymentAcceptancePaymentAttempt } from '../../model/paymentAcceptancePaymentAttempt';
export interface ParamsPaymentAcceptancePaymentAttemptsApilistPaymentAttempts {
    currency?: string;
    from_created_at?: string;
    page_num?: number;
    page_size?: number;
    payment_intent_id?: string;
    status?: string;
    to_created_at?: string;
}
export declare class PaymentAcceptancePaymentAttemptsApi {
    listPaymentAttempts({ currency, from_created_at, page_num, page_size, payment_intent_id, status, to_created_at }: ParamsPaymentAcceptancePaymentAttemptsApilistPaymentAttempts, options?: CustomRequestOptions): Promise<PaymentAcceptanceListResponseOfPaymentAcceptancePaymentAttempt>;
    retrievePaymentAttempt(id: string, options?: CustomRequestOptions): Promise<PaymentAcceptancePaymentAttempt>;
}
//# sourceMappingURL=paymentAcceptancePaymentAttemptsApi.d.ts.map