import { type Config, type GetConnectionReturnType, type ResolvedRegister } from "@wagmi/core"; import { type Accessor } from "solid-js"; import type { ConfigParameter } from "../types/index.js"; export type SolidConnectionParameters = ConfigParameter; export type UseConnectionParameters = Accessor>; export type SolidConnectionReturnType = GetConnectionReturnType; export type UseConnectionReturnType = Accessor>; /** https://wagmi.sh/solid/api/primitives/useConnection */ export declare function useConnection(parameters?: UseConnectionParameters): UseConnectionReturnType; //# sourceMappingURL=useConnection.d.ts.map