declare class AesirxAuthenticationApiService { login: (email: string, password: string) => Promise; socialLogin: (socialType: any, accessTokenSocial: any) => Promise; setTokenUser: (accessTokenData: any, isSocialLogin?: boolean) => Promise; refreshToken: (failedRequest: any, url: any, form: any, key: any) => Promise; setStore: (key: any) => void; getStore: (key: any) => string | null; } export { AesirxAuthenticationApiService as default };