import type { access } from './route.js'; export declare class UserManager { users: Record; groups: Record; enabled: boolean; constructor(adminUser?: string, password?: string); addUser: (requestUser: string, newUser: string, password: string, groups: string[]) => void; login: (user: string, password: string) => boolean; isAllowed: (method: "get" | "set", user: string, access?: access) => boolean; }