import { AlunaAccountEnum } from '../../../../lib/enums/AlunaAccountEnum'; import { AlunaOrderTypesEnum } from '../../../../lib/enums/AlunaOrderTypesEnum'; import { BitfinexOrderTypeEnum } from '../BitfinexOrderTypeEnum'; export declare const translateOrderTypeToAluna: (params2: { from: BitfinexOrderTypeEnum; }) => AlunaOrderTypesEnum; /** * There is no way to make a precise conversion from Aluna to Bitfinex using * the 'buildAdapter' approach because the Aluna order type lacks the order * account type information. */ export declare const translateOrderTypeToBitfinex: (params: { from: AlunaOrderTypesEnum; account: AlunaAccountEnum; }) => BitfinexOrderTypeEnum;