import type { Network } from '@meshconnect/uwc-types'; /** * Hook for accessing the list of configured networks * @returns Array of network configurations * @throws Error if used outside of ConnectionProvider * @example * ```tsx * const networks = useNetworks() * * networks.forEach(network => { * console.log(`${network.name}: ${network.id}`) * }) * ``` */ export declare function useNetworks(): Network[]; //# sourceMappingURL=useNetworks.d.ts.map