/**
 * Request types for the capture advanced-payment operation.
 *
 * @module advancedPayment/capture/types
 */
import type { MercadoPagoConfig } from '../../../mercadoPagoConfig';
import type { Options } from '../../../types';
export declare type AdvancedPaymentCaptureClient = {
    id: string;
    config: MercadoPagoConfig;
};
export declare type AdvancedPaymentCaptureData = {
    id: string;
    requestOptions?: Options;
};
