import RadixNodeDiscovery from './RadixNodeDiscovery'; /** * Node discovery from the Radix bootstrap service */ export default class RadixNodeDiscoveryFromNodeFinder implements RadixNodeDiscovery { readonly bootstrapService: string; /** * Creates an instance of radix node discovery from node finder. * @param bootstrapService The full address to the node finder service for the universe */ constructor(bootstrapService: string); loadNodes(): Promise; }