import type { OhlcvInterval, OhlcvResponse } from '@lifi/perps-types'; import type { SDKRequestOptions } from '../types/config.js'; import type { PerpsSDKClient } from '../types/provider.js'; export interface GetOhlcvParams { provider: string; marketId: string; interval: OhlcvInterval; startTime?: number; endTime?: number; limit?: number; } export declare function getOhlcv(client: PerpsSDKClient, params: GetOhlcvParams, options?: SDKRequestOptions): Promise; //# sourceMappingURL=getOhlcv.d.ts.map