export declare const supportedChains: { readonly baseSepolia: 84532; readonly sepolia: 11155111; readonly monadTestnet: 10143; readonly plasmaTestnet: 9746; readonly worldchainSepolia: 4801; readonly anvil: 31337; }; export declare const fheSupportedChains: { readonly baseSepolia: 84532; readonly sepolia: 11155111; }; type SupportedChains = typeof supportedChains; export type SupportedChainId = SupportedChains[keyof SupportedChains]; export type SupportedChainName = keyof SupportedChains; export type SupportedChain = { name: SupportedChainName; id: SupportedChainId; }; export type Numberish = number | bigint; export type Chainish = { id: Numberish; } | Numberish | string; export declare function getSupportedChain(chainish: Chainish): SupportedChain; export {};