/** * Check if a chain ID is supported in the current Wagmi configuration. * * Use this hook from `@openfort/react/wagmi` when your app uses WagmiProvider. * * @param chainId - The blockchain chain ID to check. * @returns `true` when the chain is configured, `false` otherwise. * * @example * ```tsx * import { useChainIsSupported } from '@openfort/react/wagmi' * * function ChainStatus({ chainId }: { chainId?: number }) { * const isSupported = useChainIsSupported(chainId) * * return {isSupported ? 'Supported' : 'Unsupported'} * } * ``` */ export declare function useChainIsSupported(chainId?: number): boolean;