import { IApiGroup } from './base'; import * as models from '../models/configuration'; export declare namespace URLs { const configurationUrl: string; const oauthInfoUrl: string; const exampleContentUrl: string; } export interface IConfigurationApi { getCloudConfiguration: () => Promise; getExampleContent: (name: string) => Promise; getOauthUrl: () => Promise; } export declare class ConfigurationApi implements IApiGroup, IConfigurationApi { getCloudConfiguration(): Promise; getExampleContent(name: string): Promise; getOauthUrl(): Promise; }