export * from './runtime'; import { Customer } from './customer'; export { Customer } from './customer'; import { PaymentRequest } from './payment_request'; export { PaymentRequest } from './payment_request'; import { Transaction, Balance } from './balance_and_transaction'; export { Transaction, Balance } from './balance_and_transaction'; import { PaymentMethod } from './payment_method'; export { PaymentMethod } from './payment_method'; import { Refund } from './refund'; export { Refund } from './refund'; import { Payout } from './payout'; export { Payout } from './payout'; import { Invoice } from './invoice'; export { Invoice } from './invoice'; export interface XenditOpts { secretKey: string; xenditURL?: string; } export declare class Xendit { opts: XenditOpts; Customer: Customer; PaymentRequest: PaymentRequest; Transaction: Transaction; Balance: Balance; PaymentMethod: PaymentMethod; Refund: Refund; Payout: Payout; Invoice: Invoice; constructor({ secretKey: _secretKey, xenditURL: _xenditURL }: XenditOpts); } export default Xendit;