import type { Config, GetConnectorClientErrorType, ResolvedRegister } from '@wagmi/core'; import type { Compute, ConfigParameter } from '@wagmi/core/internal'; import { type GetConnectorClientData, type GetConnectorClientOptions } from '@wagmi/core/query'; import type { DeepMaybeRef } from '../types/ref.js'; import { type UseQueryReturnType } from '../utils/query.js'; export type UseConnectorClientParameters> = Compute & ConfigParameter>>; export type UseConnectorClientReturnType> = UseQueryReturnType; /** https://wagmi.sh/vue/api/composables/useConnectorClient */ export declare function useConnectorClient>(parameters?: UseConnectorClientParameters): UseConnectorClientReturnType; //# sourceMappingURL=useConnectorClient.d.ts.map