/** * Generate an Aptos explorer URL for a transaction */ declare function getAptosTransactionExplorerUrl(network: string, transactionHash: string): string; /** * Generate an Aptos explorer URL for an account */ declare function getAptosAccountExplorerUrl(network: string, accountAddress: string): string; export { getAptosAccountExplorerUrl, getAptosTransactionExplorerUrl };