import { AtlasServiceInstance } from './types';
export declare function listServices(): Promise<any[]>;
export declare function getServiceInstances(serviceName: string): Promise<AtlasServiceInstance[]>;
export declare function getRandomServiceInstance(serviceName: string): Promise<AtlasServiceInstance>;
export declare function getServiceUrl(serviceName: string): Promise<string>;
