import { Network } from './interfaces/network.interface'; export declare enum KinEnvironment { Prod = "Production", Test = "Test" } export declare const explorerUrls: Map; export declare const urls: Map; export declare function getAgoraUrls(env: KinEnvironment): { createAccountURL: string; getAccountInfoURL: string; requestAirdropURL: string; getServiceConfigURL: string; getRecentBlockhashURL: string; getMinBalanceURL: string; getBalancesURL: string; submitTransactionURL: string; }; export declare function createNetwork(id: string, name: string, env: KinEnvironment): Network; export declare const KinProd: Network; export declare const KinTest: Network; export declare const NETWORKS: Network[];