/** * Format Utilities * * Address formatting utilities for different chain types. */ import { ChainTypeEnum } from '@openfort/openfort-js'; /** * Truncate EVM address with configurable separator (regex-based for 0x format). */ export declare function truncateEthAddress(address?: string, separator?: string): string; /** * Truncate Solana address with configurable separator. */ export declare function truncateSolanaAddress(address?: string, separator?: string): string; /** * Format address based on chain type */ export declare function formatAddress(address: string, chainType: ChainTypeEnum): string;