/** * Generate a Shelby explorer URL for an account's blobs */ declare function getShelbyAccountBlobsExplorerUrl(network: string, accountAddress: string): string; /** * Generate a Shelby explorer URL for a specific blob */ declare function getShelbyBlobExplorerUrl(network: string, accountAddress: string, blobName: string): string; /** * Generate a Shelby explorer URL for an account */ declare function getShelbyAccountExplorerUrl(network: string, accountAddress: string): string; export { getShelbyAccountBlobsExplorerUrl, getShelbyAccountExplorerUrl, getShelbyBlobExplorerUrl };