import { IAlunaExchangeOrderSpecsSchema, IAlunaExchangeSchema } from '../../lib/schemas/IAlunaExchangeSchema'; import { IAlunaSettingsSchema } from '../../lib/schemas/IAlunaSettingsSchema'; export declare const BITFINEX_AUTHED_URL = "https://api.bitfinex.com/v2"; export declare const BITFINEX_PUBLIC_URL = "https://api-pub.bitfinex.com/v2"; export declare const bitfinexExchangeOrderTypes: IAlunaExchangeOrderSpecsSchema[]; export declare const bitfinexBaseSpecs: IAlunaExchangeSchema; export declare const buildBitfinexSpecs: (params: { settings: IAlunaSettingsSchema; }) => IAlunaExchangeSchema; export declare const getBitfinexEndpoints: (settings: IAlunaSettingsSchema) => { symbol: { list: string; }; market: { tickers: string; marginAndPairsInfo: string; }; key: { fetchDetails: string; account: string; }; balance: { list: string; getTradableBalance: string; }; order: { get: (symbolPair: string) => string; getHistory: (symbolPair: string) => string; list: string; place: string; cancel: string; edit: string; }; position: { get: string; list: string; }; };