/// export * from './hostedCheckoutsApi'; import { HostedCheckoutsApi } from './hostedCheckoutsApi'; export * from './paymentsApi'; import { PaymentsApi } from './paymentsApi'; export * from './payoutsApi'; import { PayoutsApi } from './payoutsApi'; import * as fs from 'fs'; 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 interface RequestDetailedFile { value: Buffer; options?: { filename?: string; contentType?: string; }; } export declare type RequestFile = string | Buffer | fs.ReadStream | RequestDetailedFile; export declare const APIS: (typeof HostedCheckoutsApi | typeof PaymentsApi | typeof PayoutsApi)[];