import UsersAPIHelper from './users-api-helper'; import type { SessionsResponse, AuthResponse } from '../../models/user.types'; export default class UsersAPISessionHelper extends UsersAPIHelper { bearerTokenCreate({ email, password, allowed_user_types, }: { email: string; password: string; allowed_user_types: string[]; }): Promise; create(bearerToken: string): Promise; verify(encryptedCookieToken: string): Promise; } //# sourceMappingURL=users-api-session-helper.d.ts.map