import { IBeaconNodeOptions } from "@lodestar/beacon-node"; import { CliCommandOptions } from "@lodestar/utils"; export type ExecutionEngineArgs = { "execution.urls": string[]; "execution.timeout"?: number; "execution.retries": number; "execution.retryDelay": number; "execution.engineMock"?: boolean; jwtSecret?: string; jwtId?: string; }; export declare function parseArgs(args: ExecutionEngineArgs): IBeaconNodeOptions["executionEngine"]; export declare const options: CliCommandOptions; //# sourceMappingURL=execution.d.ts.map