import type { Hash } from 'strkjs'; import type { Client } from '../../clients/createClient.js'; import type { Transport } from '../../clients/transports/createTransport.js'; import type { Chain } from '../../types/chain.js'; export type GetTransactionByHashParameters = { transaction_hash: Hash; }; export type GetTransactionByHashReturnTypes = any; export type GetTransactionByHashErrorType = any; export declare function getTransactionByHash(client: Client, { transaction_hash }: GetTransactionByHashParameters): Promise; //# sourceMappingURL=getTransactionByHash.d.ts.map