import type { Fill, MarketDisplay } from '@lifi/perps-types'; import type { LtTrade } from '../types/index.js'; /** * Map a raw Lighter trade to the generic Fill type. * @param accountIndex - The viewer's Lighter account index (selects buy/sell side and maker/taker role). * @param market - Backend-resolved market identity for `trade.market_id`. * @public */ export declare const mapFill: (trade: LtTrade, accountIndex: number, market: MarketDisplay) => Fill; //# sourceMappingURL=mapFill.d.ts.map