import { NetworkIdType } from '../Network'; import { AddressSystemType } from '../Address'; export declare function formatBitcoinAddress(address: string): string; export declare function formatMoveAddress(address: string): string; export declare function formatEvmAddress(address: string): string; export declare function formatSolanaAddress(address: string): string; export declare function formatSeiAddress(address: string): string; export declare function formatAddress(address: string, addressSystem: AddressSystemType): string; export declare function formatAddressByNetworkId(address: string, networkId: NetworkIdType): string;