import type { Client } from '../../clients/createClient.js'; import type { Transport } from '../../clients/transports/createTransport.js'; import type { BlockTag } from '../../types/block.js'; import type { Chain } from '../../types/chain.js'; import type { Hash } from '../../types/misc.js'; export type GetBlockTransactionsTracesParameters = { block_hash?: Hash; block_number?: number; block_tag?: BlockTag; }; export type GetBlockTransactionsTracesReturnTypes = any; export type GetBlockTransactionsTracesErrorType = any; export declare function getBlockTransactionsTraces(client: Client, { block_hash, block_number, block_tag }: GetBlockTransactionsTracesParameters): Promise; //# sourceMappingURL=getBlockTransactionsTraces.d.ts.map