declare type Address = BigInt; export declare function isValidAddress(address: Address, chain: ChainID): boolean; export declare class ChainID { readonly codeword: BigInt; static mainnet: ChainID; static testnet: ChainID; static emulator: ChainID; constructor(codeword: BigInt); } export {};