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 GetTransactionReceiptParameters = { transaction_hash: Hash; }; export type GetTransactionReceiptReturnType = any; export type GetTransactionReceiptErrorType = any; export declare function getTransactionReceipt(client: Client, { transaction_hash }: GetTransactionReceiptParameters): Promise; //# sourceMappingURL=getTransactionReceipt.d.ts.map