import { Ref } from 'vue'; import { ethers } from "ethers"; export interface ReturnConnect { getAccount: () => Promise | undefined>; getChainId: () => Promise | undefined>; getSigner: () => Promise; chainId: Ref; connect: () => Promise | void>; disconnect: () => Promise | void>; switchChain: (localChainId: string) => Promise; account: Ref; data: Record; } export declare function useConnect(): ReturnConnect; //# sourceMappingURL=useConnect.d.ts.map