import type { Chain } from 'viem'; /** * Access all blockchain chains configured in the Wagmi config. * * Use this hook from `@openfort/react/wagmi` when your app uses WagmiProvider. * Returns an array of chain objects (id, name, nativeCurrency, etc.). * * @returns Array of configured blockchain chains * * @example * ```tsx * import { useChains } from '@openfort/react/wagmi' * * function ChainSelector() { * const chains = useChains() * * return ( * * ) * } * ``` */ export declare function useChains(): Chain[];