import type { Client } from '../../clients/createClient.js'; import type { Transport } from '../../clients/transports/createTransport.js'; import type { Chain } from '../../types/chain.js'; import type { Hash } from '../../types/misc.js'; export type GetTraceTransactionParameters = { transaction_hash: Hash; }; export type GetTraceTransactionReturnTypes = any; export type GetTraceTransactionErrorType = any; export declare function getTraceTransaction(client: Client, { transaction_hash }: GetTraceTransactionParameters): Promise; //# sourceMappingURL=getTraceTransaction.d.ts.map