/// import http from 'http'; import { ApplicableTerminals } from '../model/applicableTerminals'; import { FetchAllLedgerTransactions200Response } from '../model/fetchAllLedgerTransactions200Response'; import { Authentication, Interceptor } from '../model/models'; import { ApiKeyAuth } from '../model/models'; export declare enum WalletTransactionLedgerApiApiKeys { api_key = 0 } export declare class WalletTransactionLedgerApi { protected _basePath: string; protected _defaultHeaders: any; protected _useQuerystring: boolean; protected authentications: { default: Authentication; api_key: ApiKeyAuth; }; protected interceptors: Interceptor[]; constructor(basePath?: string); set useQuerystring(value: boolean); set basePath(basePath: string); set defaultHeaders(defaultHeaders: any); get defaultHeaders(): any; get basePath(): string; setDefaultAuthentication(auth: Authentication): void; setApiKey(key: WalletTransactionLedgerApiApiKeys, value: string): void; addInterceptor(interceptor: Interceptor): void; fetchAllLedgerTransactions(startDateTime: Date, endDateTime: Date, pageNum: number, pageSize: number, registerType?: ApplicableTerminals, options?: { headers: { [name: string]: string; }; }): Promise<{ response: http.IncomingMessage; body: FetchAllLedgerTransactions200Response; }>; }