import type { FillsResponse } 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 GetFillsParams { provider: string; address: Address; limit?: number; cursor?: string; startTime?: number; endTime?: number; } export declare function getFills(client: PerpsSDKClient, params: GetFillsParams, options?: SDKRequestOptions): Promise; //# sourceMappingURL=getFills.d.ts.map