import { Address } from "wagmi"; /** * Return a formatted representation of an Ethereum address. * If the address resolves to an ENS name, it will be returned instead. * * @param address The address to format * @param [opts.enableEns=true] try to resolve [address] to an ENS name. If found, return it. Defaults to true. * @param opts.truncateTo If the return value is a full-length Address (not an ENS name), truncate the Address to the given number of characters. */ export declare function useFormattedEthAddress(address: Address | undefined, { enableEns, truncateTo, }?: { enableEns: boolean; truncateTo?: number; }): { isLoading: boolean; data: string | null; }; //# sourceMappingURL=useFormattedEthAddress.d.ts.map