import { token, password } from '../../common/helper'; export declare class AuthService { constructor(); url: string; realm: string; setUrl: (loginUrl: any) => void; auth: { login: (loginObj: { type: string; userName?: string; password?: string; token?: string; }) => Promise; }; clientLogin: (loginClientSecret?: string, clientId?: string, mainToken?: string) => Promise; getClientToken: (client_id: any, client_secret: any, username: any, password: any) => Promise; createClient: (token: any, clientId: any, password: any) => Promise; getToken: (client_id: any, client_secret: any) => Promise; getClient: (token: any, clientName: any) => Promise; setClientPassword: (token: any, clientId: any, password: any) => Promise; userLogin: (userName: any, password: any) => Promise; }