export interface IBitfinexSymbolsSchema { currencies: string[]; currenciesNames: TBitfinexCurrenciesPairs; } export interface IBitfinexSymbolSchema { currency: string; currencyName: TBitfinexCurrencyPair | undefined; } export declare type TBitfinexCurrencyPair = [currency: string, name: string]; export declare type TBitfinexCurrenciesPairs = Array<[currency: string, name: string]>;