import type { InstallmentsParams } from './types';
/**
 * Returns all installments available.
 *
 * @see {@link https://github.com/mercadopago/sdk-js/blob/main/docs/core-methods.md#mp-instancegetinstallmentsinstallmentsparams method documentation}.
 */
declare const getInstallments: (installmentsParams: InstallmentsParams) => Promise<import("./types").Installments[] | undefined>;
export default getInstallments;
