import { IAuthentication } from "../internal/auth"; /** * Aspose.CAD Cloud API configuration */ export declare class Configuration { /** * Authentication. */ authentication: IAuthentication; /** * App SID. */ appSID: string; /** * App key. */ appKey: string; /** * Base Url. */ baseUrl: string; /** * Gets or sets a value indicating whether debug mode. In debug mode all requests and responses are logged to console. */ debugMode: boolean; /** * Gets or sets a url to a proxy. */ proxy: string; /** * Gets or sets the API version. */ apiVersion: string; /** * If you use custom on-premise server with metered license. * This way, you only need to specify the API base URL. */ onPremise: boolean; constructor(appKey: string, appSID: string, baseUrl?: string, debugMode?: boolean, apiVersion?: string, proxy?: string); /** * Returns api base url */ getApiBaseUrl(): string; }