import * as React from 'react'; import './Addres.less'; export declare function truncateAddress(address: string): string; type Props = { address: string; truncated?: boolean; size?: 'small' | 'large' | 'bigger'; }; declare const Address: React.FC; export default Address;