import { User } from "../api/connection/user/User"; import { UserManager } from "../api/connection/user/UserManager"; import { UserImpl } from "../dependencies_internal"; import { ServerDriver, TypeDBDriverImpl } from "../connection/TypeDBDriverImpl"; export declare class UserManagerImpl implements UserManager { static _SYSTEM_DB: string; private readonly _driver; constructor(driver: TypeDBDriverImpl); all(): Promise; contains(username: string): Promise; create(username: string, password: string): Promise; delete(username: string): Promise; get(username: string): Promise; passwordSet(username: string, password: string): Promise; runFailsafe(task: (driver: ServerDriver) => Promise): Promise; }