import { default as React } from 'react'; export interface AddressLinkProps { /** The blockchain address to display */ address: string; /** Chain ID for EVM chains (positive) or Solana chains (negative) */ chainId?: number; /** Block explorer base URL (if not using chainId) */ explorerUrl?: string; /** Label to display before the address */ label?: string; /** Display format: 'short' (default), 'medium', or 'full' */ format?: 'short' | 'medium' | 'full'; /** Show copy button */ showCopy?: boolean; /** Show explorer link button */ showExplorer?: boolean; /** Custom className */ className?: string; /** Custom text className */ textClassName?: string; } /** * AddressLink Component */ export declare const AddressLink: React.FC; //# sourceMappingURL=address-link.d.ts.map