import { Network } from '@aptos-labs/ts-sdk'; declare const shelbyNetworks: readonly [Network.LOCAL, Network.SHELBYNET]; type NamedShelbyNetwork = (typeof shelbyNetworks)[number]; type ShelbyNetwork = NamedShelbyNetwork | Network.CUSTOM; declare const isShelbyNetwork: (network: string) => network is ShelbyNetwork; export { type ShelbyNetwork, isShelbyNetwork, shelbyNetworks };