import type { ActionType, ExecuteActionResponse, SignedActionStep } 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 ExecuteActionParams { provider: string; address: Address; signerAddress?: Address; action: ActionType; actions: SignedActionStep[]; } export declare function executeAction(client: PerpsSDKClient, params: ExecuteActionParams, options?: SDKRequestOptions): Promise; //# sourceMappingURL=executeAction.d.ts.map