import { Web3Client } from '@cxptek/web3client'; /** * useConnectors hook. Hekp to get supported connector by chainId and get connector by id. * * @author Tieu Phong * @since 1.2.0 * * @returns {Object} getSupportedConnector, getConnector */ declare const useConnectors: () => { getSupportedConnector: (chainId: number) => Web3Client[]; getConnector: (connectorId: string) => Web3Client; switchConnector: (newConnector: Web3Client) => Promise; }; export default useConnectors;