/** * Vana protocol networks known to this SDK release. * * The network name is the ergonomic public API; the chain ID is the protocol * namespace used by chain-scoped services such as storage and escrow. * * @category Protocol */ export type ProtocolNetwork = "mainnet" | "moksha"; export declare function isProtocolNetwork(value: unknown): value is ProtocolNetwork; export declare function getProtocolNetworkChainId(network: ProtocolNetwork): number;