export declare class IdpRequest { private static instance; static getInstance(env: string): IdpRequest; private constructor(); private baseUrl; login: (username: string, password: string) => Promise; logout: () => Promise; getUser: () => Promise; googleLoginWithToken: (token: string) => Promise; googleAccountUpdateWithToken: (token: string) => Promise; recoverPassword: (email: string) => Promise; } export declare class MyzRequest { private static instance; private constructor(); static getInstance(env: string): MyzRequest; private baseUrl; getAndSetEduGrpCookie(): Promise; }