import { BlockExplorerParams } from "./index.js"; /** * Creates a terminal-friendly link to a transaction on a block explorer. * * @param txHash - The hash of the transaction. * @param params - Optional parameters for constructing the block explorer URL. * @returns A promise that resolves to a string containing the terminal-friendly link. */ export declare function txLink(txHash: string, params?: BlockExplorerParams): Promise;