import { BaseService } from './BaseService.js'; import type { PaginatedResponse } from '../types/common.js'; import type { Installment, ListInstallmentsParams } from '../types/installment.js'; /** Serviço de Parcelamentos da API Asaas */ export declare class InstallmentService extends BaseService { constructor(http: import('../http/HttpClient.js').HttpClient); /** Recuperar um único parcelamento */ getById(id: string): Promise; /** Listar parcelamentos */ list(params?: ListInstallmentsParams): Promise>; /** Remover parcelamento */ delete(id: string): Promise; /** Estornar parcelamento */ refund(id: string): Promise; } //# sourceMappingURL=installment.service.d.ts.map