import { AccountService, BankingService, CashDepositService, MassPaymentService, PaymentService, ValidationService } from "./services"; declare class PaparaClient { accountService: AccountService; bankingService: BankingService; cashDepositService: CashDepositService; massPaymentService: MassPaymentService; paymentService: PaymentService; validationService: ValidationService; constructor(apiKey: string, env?: string); } export { PaparaClient };