export default class LoginApi { static authentication({ username, password }: { username: any; password: any; }): Promise; static updatePwd(oldPassword: string, newPassword: string): Promise; static authenticationByCode(code: string): Promise; static getTargetURL(): Promise; static getTargetURLByOrgID(targetOrgID: string): Promise; static checkTplusToken(orgId: string, serverUrl: any): Promise; static changeOrg(orgId: any): Promise; static getApiConfig(): Promise>; static getTplusToken({ clientName, desc }: { clientName?: any; desc?: any; }): Promise; static getSignature(): Promise; static logout(): Promise; }