interface Props { address: string; ensName?: string | null; mode?: 'auto' | 'full' | 'truncate'; truncateChars?: number; copyOnClick?: boolean; class?: string; showCopyIcon?: boolean; size?: 'xs' | 'sm' | 'base' | 'lg'; showTooltip?: boolean; } declare const AddressDisplay: import("svelte").Component; type AddressDisplay = ReturnType; export default AddressDisplay;