/** * Hedera network configuration. * * Mirror Node REST base URLs are public and keyless — all read/query tools use them. * nodeAccountIds are stable consensus-node accounts used when freezing a build-only * transaction so the serialized bytes target real nodes. */ export interface NetworkConfig { /** Human label, e.g. "testnet" */ name: "mainnet" | "testnet" | "previewnet"; /** Mirror Node REST base URL (no trailing slash) */ mirror: string; /** Consensus node account IDs used for build-only transaction freezing */ nodeAccountIds: string[]; /** HashScan explorer base for this network */ explorer: string; } export declare function resolveNetwork(): NetworkConfig;