import { IAlunaInstrumentSchema } from '../../../../../../lib/schemas/IAlunaInstrumentSchema'; export interface IComputeOrderAmountParams { orderQty: number; computedPrice: number; instrument: IAlunaInstrumentSchema; } export interface IComputeOrderAmountReturns { amount: number; } export declare const computeOrderAmount: (params: IComputeOrderAmountParams) => IComputeOrderAmountReturns;