import type { SDKRequestOptions } from '@lifi/perps-sdk'; import { type MarketRef, type MarketSettings } from '@lifi/perps-types'; import type { Address } from 'viem'; import type { HyperliquidContext } from '../context.js'; /** * Parameters for {@link getMarketSettings}. * * @public */ export interface GetMarketSettingsParams { address: Address; market: MarketRef; } /** * The user's venue-stored margin mode and leverage for one perps market, * read from `activeAssetData` — present whether or not a position is open. * @throws {PerpsError} On Hyperliquid REST error, network, or parsing failures. * @public */ export declare const getMarketSettings: ({ client, apiUrl }: HyperliquidContext, params: GetMarketSettingsParams, options?: SDKRequestOptions) => Promise; //# sourceMappingURL=getMarketSettings.d.ts.map