/// export * from './ordersApi'; import { OrdersApi } from './ordersApi'; export * from './paymentLinksApi'; import { PaymentLinksApi } from './paymentLinksApi'; export * from './paymentsApi'; import { PaymentsApi } from './paymentsApi'; export * from './refundsApi'; import { RefundsApi } from './refundsApi'; export * from './settlementsApi'; import { SettlementsApi } from './settlementsApi'; export * from './tokenVaultApi'; import { TokenVaultApi } from './tokenVaultApi'; import * as http from 'http'; export declare class HttpError extends Error { response: http.IncomingMessage; body: any; statusCode?: number | undefined; constructor(response: http.IncomingMessage, body: any, statusCode?: number | undefined); } export { RequestFile } from '../model/models'; export declare const APIS: (typeof OrdersApi | typeof PaymentLinksApi | typeof PaymentsApi | typeof RefundsApi | typeof SettlementsApi | typeof TokenVaultApi)[];