import type { Block, ExecutionPayload } from '@ethereumjs/block'; import type { CLRequest, CLRequestType } from '@ethereumjs/util'; import type { BlobsBundle } from '../../../../miner/index.ts'; import type { BlobsBundleV1 } from '../types.ts'; /** * Formats a block to {@link ExecutionPayloadV1}. */ export declare const blockToExecutionPayload: (block: Block, value: bigint, bundle?: BlobsBundle, requests?: CLRequest[]) => { executionPayload: ExecutionPayload; executionRequests: string[] | undefined; blockValue: `0x${string}`; blobsBundle: BlobsBundleV1 | undefined; shouldOverrideBuilder: boolean; }; //# sourceMappingURL=getPayload.d.ts.map