/** * REST API URL information */ export declare class UrlInfo { private static readonly OAUTH2_ROOT_URL; private static readonly API_ROOT_URL; private static readonly OAUTH2_BASE_PATH; private static readonly API_BASE_PATH; readonly oauth2RootUrl: string; readonly apiRootUrl: string; readonly oauth2BaseUrl: string; readonly apiBaseUrl: string; private static defaultOAuth2RootURL; private static defaultApiRootURL; static setDefaultUrl(oauth2RootUrl: string, apiRootUrl: string): void; constructor(); GetOAuth2TokenEndPoint(): string; GetWorkflowsEndPoint(): string; GetJobsEndPoint(): string; }