import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec, HttpContext } from '@angular/common/http'; import { Observable } from 'rxjs'; import { SymbolPriceBankModel } from '../model/symbolPrice'; import { Configuration } from '../configuration'; import * as i0 from "@angular/core"; export declare class PricesService { protected httpClient: HttpClient; protected basePath: string; defaultHeaders: HttpHeaders; configuration: Configuration; encoder: HttpParameterCodec; constructor(httpClient: HttpClient, basePath: string, configuration: Configuration); private addToHttpParams; private addToHttpParamsRecursive; /** * Get Price * Retrieves a listing of symbol prices. ## Symbols Symbol are pairs and are in the format asset-counter_asset, e.g., \'BTC-USD\' for the Bitcoin/ USD pair. See the Symbols API for a complete list of cryptocurrencies supported. Required scope: **prices:read** * @param symbol Comma separated trading symbols to list prices for. * @param tradingSymbol Comma separated trading symbols to list prices for. * @param payoutSymbol Comma separated payout symbols to list prices for. * @param payoutCountryCode Comma separated payout country codes to list prices for. * @param payoutParticipantsType Comma separated payout participants types to list prices for. * @param payoutRoute Comma separated payout routes to list prices for. * @param bankGuid The bank identifier to retrieve prices for. * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ listPrices(symbol?: string, tradingSymbol?: string, payoutSymbol?: string, payoutCountryCode?: string, payoutParticipantsType?: string, payoutRoute?: string, bankGuid?: string, observe?: 'body', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json'; context?: HttpContext; }): Observable>; listPrices(symbol?: string, tradingSymbol?: string, payoutSymbol?: string, payoutCountryCode?: string, payoutParticipantsType?: string, payoutRoute?: string, bankGuid?: string, observe?: 'response', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json'; context?: HttpContext; }): Observable>>; listPrices(symbol?: string, tradingSymbol?: string, payoutSymbol?: string, payoutCountryCode?: string, payoutParticipantsType?: string, payoutRoute?: string, bankGuid?: string, observe?: 'events', reportProgress?: boolean, options?: { httpHeaderAccept?: 'application/json'; context?: HttpContext; }): Observable>>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }