import type { PricesResponse } from '@lifi/perps-types'; import type { SDKRequestOptions } from '../types/config.js'; import type { PerpsSDKClient } from '../types/provider.js'; /** * Parameters for {@link getMarketsContext}. * * @public */ export interface GetMarketsContextParams { provider: string; /** Optional filter — opaque `Market.id`s (not display symbols). */ marketIds?: string[]; } /** * Get current market context (mid/mark/oracle) for markets, optionally filtered * by `Market.id`. * * @throws {PerpsError} On backend error responses, network, or parsing errors. * @public */ export declare function getMarketsContext(client: PerpsSDKClient, params: GetMarketsContextParams, options?: SDKRequestOptions): Promise; //# sourceMappingURL=getMarketsContext.d.ts.map