import { GetAvatarsBatchReturnType, ResolveAvatarsBatchArgs } from '@edgeandnode/ens'; import { GetEnsAvatarErrorType } from '@wagmi/core'; import { Config, ResolvedRegister } from 'wagmi'; import { UseQueryReturnType } from 'wagmi/query'; export type UseGraphAuthKitAvatarsArgs = ResolveAvatarsBatchArgs; export type UseGraphAuthKitAvatarsResult = UseQueryReturnType; /** * React hook for looking up a map of avatars for the given array of addresses * * @example Return the avatar for the given address * ```tsx * import { ExperimentalAvatar as Avatar } from '@edgeandnode/gds' * import { useGraphAuthKitAvatars } from '@edgeandnode/graph-auth-kit/ens' * * export function RenderListOfUsers() { * const { data: avatarMap } = useGraphAuthKitAvatars({ addresses: ['0x123', '0x456'] }) * * return ( *
    * {Object.entries(avatarMap).map(([address, avatar]) => ( *
  1. * ))} *
* ) * } * ``` */ export declare function useGraphAuthKitAvatars(args: Readonly): UseGraphAuthKitAvatarsResult; //# sourceMappingURL=useGraphAuthKitAvatars.d.ts.map