import { RVFilterBankReconciliation, RVFormattedScoreResponse, RVFormattedTransactionResponse, RVReportRequest, RVReportRequestParameter, RVReportSummaryApiResponse, RVTaxBenchmarking } from '../types'; /** * RequestService to make API Calls to Accounting Data as a Serviceā„¢ **/ declare class RequestService { getUrl: () => string; getReportData({ path, filter, }: RVReportRequestParameter): Promise; getRequest({ url, }: RVReportRequest): Promise; } export declare const RequestServiceInstance: RequestService; export {};