import { C as CofheChain } from './types-C07FK-cL.js'; export { E as Environment } from './types-C07FK-cL.js'; import 'zod'; /** * Sepolia testnet chain configuration */ declare const sepolia: { id: number; name: string; network: string; coFheUrl: string; verifierUrl: string; thresholdNetworkUrl: string; environment: "MOCK" | "TESTNET" | "MAINNET"; }; /** * Arbitrum Sepolia testnet chain configuration */ declare const arbSepolia: { id: number; name: string; network: string; coFheUrl: string; verifierUrl: string; thresholdNetworkUrl: string; environment: "MOCK" | "TESTNET" | "MAINNET"; }; /** * Base Sepolia testnet chain configuration */ declare const baseSepolia: { id: number; name: string; network: string; coFheUrl: string; verifierUrl: string; thresholdNetworkUrl: string; environment: "MOCK" | "TESTNET" | "MAINNET"; }; /** * Hardhat local development chain configuration */ declare const hardhat: { id: number; name: string; network: string; coFheUrl: string; verifierUrl: string; thresholdNetworkUrl: string; environment: "MOCK" | "TESTNET" | "MAINNET"; }; /** * Localcofhe chain configuration */ declare const localcofhe: { id: number; name: string; network: string; coFheUrl: string; verifierUrl: string; thresholdNetworkUrl: string; environment: "MOCK" | "TESTNET" | "MAINNET"; }; declare const chains: { readonly sepolia: { id: number; name: string; network: string; coFheUrl: string; verifierUrl: string; thresholdNetworkUrl: string; environment: "MOCK" | "TESTNET" | "MAINNET"; }; readonly arbSepolia: { id: number; name: string; network: string; coFheUrl: string; verifierUrl: string; thresholdNetworkUrl: string; environment: "MOCK" | "TESTNET" | "MAINNET"; }; readonly baseSepolia: { id: number; name: string; network: string; coFheUrl: string; verifierUrl: string; thresholdNetworkUrl: string; environment: "MOCK" | "TESTNET" | "MAINNET"; }; readonly hardhat: { id: number; name: string; network: string; coFheUrl: string; verifierUrl: string; thresholdNetworkUrl: string; environment: "MOCK" | "TESTNET" | "MAINNET"; }; readonly localcofhe: { id: number; name: string; network: string; coFheUrl: string; verifierUrl: string; thresholdNetworkUrl: string; environment: "MOCK" | "TESTNET" | "MAINNET"; }; }; declare const getChainById: (chainId: number) => CofheChain | undefined; declare const getChainByName: (name: string) => CofheChain | undefined; export { CofheChain, arbSepolia, baseSepolia, chains, getChainById, getChainByName, hardhat, localcofhe, sepolia };