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