import { AccountService } from '../services/account.service.js'; import { AnticipationService } from '../services/anticipation.service.js'; import { BillService } from '../services/bill.service.js'; import { CreditBureauService } from '../services/credit-bureau.service.js'; import { CustomerService } from '../services/customer.service.js'; import { DunningService } from '../services/dunning.service.js'; import { FiscalInfoService } from '../services/fiscal-info.service.js'; import { InstallmentService } from '../services/installment.service.js'; import { InvoiceService } from '../services/invoice.service.js'; import { NotificationService } from '../services/notification.service.js'; import { PaymentLinkService } from '../services/payment-link.service.js'; import { PixService } from '../services/pix.service.js'; import { PaymentService } from '../services/payment.service.js'; import { StatementService } from '../services/statement.service.js'; import { SubAccountService } from '../services/sub-account.service.js'; import { SubscriptionService } from '../services/subscription.service.js'; import { TransferService } from '../services/transfer.service.js'; import { WebhookService } from '../services/webhook.service.js'; import type { AsaasClientConfig } from '../types/common.js'; /** * Cliente principal do SDK Asaas. * Aceita configuração por parâmetro e/ou variáveis de ambiente (ASAAS_API_KEY, ASAAS_ENV). */ export declare class AsaasClient { private readonly http; readonly account: AccountService; readonly anticipations: AnticipationService; readonly bills: BillService; readonly creditBureau: CreditBureauService; readonly customers: CustomerService; readonly dunnings: DunningService; readonly fiscalInfo: FiscalInfoService; readonly installments: InstallmentService; readonly invoices: InvoiceService; readonly payments: PaymentService; readonly notifications: NotificationService; readonly paymentLinks: PaymentLinkService; readonly pix: PixService; readonly statement: StatementService; readonly subAccounts: SubAccountService; readonly subscriptions: SubscriptionService; readonly transfers: TransferService; readonly webhooks: WebhookService; constructor(config?: AsaasClientConfig); } //# sourceMappingURL=AsaasClient.d.ts.map