import type { Config, GetConnectorClientErrorType, ResolvedRegister } from '@wagmi/core'; import { type Evaluate, type Omit } from '@wagmi/core/internal'; import { type GetConnectorClientData, type GetConnectorClientOptions, type GetConnectorClientQueryFnData, type GetConnectorClientQueryKey } from '@wagmi/core/query'; import type { ConfigParameter, DeepUnwrapRef, MaybeRefDeep } from '../types.js'; import { type UseQueryParameters, type UseQueryReturnType } from '../utils/query.js'; export type UseConnectorClientParameters> = MaybeRefDeep & ConfigParameter & { query?: Evaluate, GetConnectorClientErrorType, selectData, GetConnectorClientQueryKey>>, 'gcTime' | 'staleTime'>> | undefined; }>>; export type UseConnectorClientReturnType> = UseQueryReturnType; /** https://wagmi.sh/react/api/hooks/useConnectorClient */ export declare function useConnectorClient>(parameters?: UseConnectorClientParameters): UseConnectorClientReturnType; //# sourceMappingURL=useConnectorClient.d.ts.map