import type { Order } from '@lifi/perps-types'; import type { Address } from 'viem'; import type { SDKRequestOptions } from '../types/config.js'; import type { PerpsSDKClient } from '../types/provider.js'; export interface GetOrderParams { provider: string; address: Address; id: string; } export declare function getOrder(client: PerpsSDKClient, params: GetOrderParams, options?: SDKRequestOptions): Promise; //# sourceMappingURL=getOrder.d.ts.map