import type { FeeTier } from './account.js'; import type { FundingInfo } from './market.js'; export type QuoteSide = 'buy' | 'sell'; export type TradeType = 'perps' | 'spot'; export interface Quote { provider: string; symbol: string; marketId: string; type: TradeType; side: QuoteSide; sizeUsd: string; baseSize: string; markPrice: string; expectedFillPrice: string; priceImpactBps: string; feeTier: FeeTier; isDefaultFeeTier: boolean; feeUsd: string; funding: FundingInfo | null; insufficientLiquidity: boolean; timestamp: number; } //# sourceMappingURL=quote.d.ts.map