import type { FlowEnv } from "@rarible/flow-sdk/build/types"; import type { EthereumNetwork } from "@rarible/protocol-ethereum-sdk/build/types"; import type { TezosNetwork } from "@rarible/tezos-sdk"; import type { SolanaCluster } from "@rarible/solana-sdk"; import type { ImxEnv } from "@rarible/immutable-wallet"; export declare type RaribleSdkEnvironment = "development" | "testnet" | "prod"; export declare type RaribleSdkConfig = { basePath: string; ethereumEnv: EthereumNetwork; flowEnv: FlowEnv; tezosNetwork: TezosNetwork; polygonNetwork: EthereumNetwork; solanaNetwork: SolanaCluster; immutablexNetwork: ImxEnv; };