/** * Note this is just an interface, used in the core config. * The implementations are located in the @moralisweb3/sol-utils package. */ export declare const solNetworkNames: readonly ["mainnet", "devnet"]; export declare type SolNetworkName = typeof solNetworkNames[number]; export interface SolNetworkable { network: SolNetworkName; } export declare type SolNetworkish = SolNetworkable | string; //# sourceMappingURL=SolNetworkish.d.ts.map