import ProxyService from './Proxy'; import { Auth, Users, EmptyResponse } from './types'; export default class AuthService { proxy: ProxyService; readonly routes: { session: string; login: string; }; constructor(proxy: ProxyService); setSession: (session: Partial) => void; getSession: () => Promise; createSession: (params?: Auth.LoginParams | {}) => Promise; destroySession: () => Promise; login: (params: Auth.LoginParams) => Promise; logout: () => Promise; private generateCreateSessionParams; } //# sourceMappingURL=Auth.d.ts.map