export interface IDtaService { login(loginOptions: any, https: any): any; getDta(): any; } export declare class DtaService { private httpEndpoint; constructor(endpoint: string, httpEndpoint: string); login(loginOptions: any, https: any): any; getDta(): Promise<{}>; private createHttpConnection; private _Dta; }