import type { OmniAddress } from "../types/index.js"; import { ChainKind } from "../types/index.js"; export type EVMChainKind = ChainKind.Eth | ChainKind.Base | ChainKind.Arb | ChainKind.Bnb; /** * Checks if a given chain is an EVM-compatible chain * @param chain - The chain to check * @returns true if the chain is EVM-compatible, false otherwise */ export declare function isEvmChain(chain: ChainKind): chain is EVMChainKind; export declare const omniAddress: (chain: ChainKind, address: string) => OmniAddress; export declare const getChain: (addr: OmniAddress) => ChainKind; //# sourceMappingURL=chain.d.ts.map