/**
 * Request and internal-client types for the process order operation.
 *
 * @module clients/order/process/types
 */
import { MercadoPagoConfig } from '../../../mercadoPagoConfig';
import type { Options } from '../../../types';
/**
 * Public-facing input for {@link Order.process}.
 */
export declare type OrderProcessData = {
    /** Unique order identifier to process. */
    id: string;
    /** Per-call request options (timeout, idempotency key, etc.). */
    requestOptions?: Options;
};
/**
 * Internal client payload passed to the process order REST call.
 */
export declare type OrderProcessClient = {
    /** SDK configuration (access token, default options). */
    config: MercadoPagoConfig;
    /** Unique order identifier to process. */
    id: string;
};
