import { ReactNode } from 'react'; type IconProps = { showIcon?: boolean; iconSize?: number; canCopy?: boolean; }; type Props = IconProps & { address: string; title?: string; hideAddress?: boolean; variant?: 'full' | 'truncate' | 'short'; testId?: string; icon?: ReactNode; }; export declare const Address: import('react').MemoExoticComponent<({ title, variant, showIcon, iconSize, address, testId, hideAddress, icon, }: Props) => import("react").JSX.Element>; export {};