/** * Trims the address to the first 5 and last 5 characters. * @param address The address to trim. * @returns The trimmed address. */ export declare function trimAddress(address: string): string; /** * Get the URL of the block explorer page for an address. * @param address - The address to link to. * @param chainType - The chain type of the address. * @param isTestnet - Whether the address is on testnet. * @returns The URL of the block explorer page for the address. */ export declare function getAddressExplorerUrl(address: string, chainType: "bitcoin" | "evm" | "mezo", isTestnet: boolean): string; //# sourceMappingURL=address.d.ts.map