import { IAlunaExchangeAuthed } from '../../../../../../lib/core/IAlunaExchange'; import { IAlunaHttp } from '../../../../../../lib/core/IAlunaHttp'; import { IFtxOrderSchema } from '../../../../schemas/IFtxOrderSchema'; export interface IGetFtxOrdinaryOrderParams { id: string; exchange: IAlunaExchangeAuthed; http: IAlunaHttp; } export declare const getFtxOrdinaryOrder: (params: IGetFtxOrdinaryOrderParams) => Promise;