import type { Quote, QuoteSide, TradeType } from '@lifi/perps-types'; import type { SDKRequestOptions } from '../types/config.js'; import type { PerpsSDKClient } from '../types/provider.js'; export interface GetQuoteParams { provider: string; symbol: string; side: QuoteSide; size: number; type: TradeType; } export declare function getQuote(client: PerpsSDKClient, params: GetQuoteParams, options?: SDKRequestOptions): Promise; //# sourceMappingURL=getQuote.d.ts.map