import { IAlunaExchangePublic } from '../../lib/core/IAlunaExchange'; import { IAlunaMarketModule } from '../../lib/modules/public/IAlunaMarketModule'; import { IAlunaSymbolModule } from '../../lib/modules/public/IAlunaSymbolModule'; import { IAlunaExchangeSchema } from '../../lib/schemas/IAlunaExchangeSchema'; import { IAlunaSettingsSchema } from '../../lib/schemas/IAlunaSettingsSchema'; export declare class Bitmex implements IAlunaExchangePublic { id: string; specs: IAlunaExchangeSchema; settings: IAlunaSettingsSchema; symbol: IAlunaSymbolModule; market: IAlunaMarketModule; constructor(params: { settings?: IAlunaSettingsSchema; }); }