import { useQuery, type DefaultError, type QueryKey } from '@tanstack/react-query'; type ENSResolverResponse = { address?: string; name?: string; shortName?: string; displayName?: string; shortAddress?: string; avatar?: string; }; type QueryType = typeof useQuery; type QueryOptions = Parameters['0']; declare const _default: (address?: string, queryOptions?: Partial) => import("@tanstack/react-query").UseQueryResult & ENSResolverResponse; export default _default; //# sourceMappingURL=useENSResolver.d.ts.map