import { EthAddress } from '@ethersphere/bee-js'; import { ReactElement } from 'react'; interface Props { address: EthAddress | undefined; hideBlockie?: boolean; transaction?: boolean; truncate?: boolean; } export default function EthereumAddress(props: Props): ReactElement; export {};