import { UserFactoryFunc, UserProviderInterface } from '../interfaces'; import { UserInterface } from '@rxstack/core'; export declare class InMemoryUserProvider implements UserProviderInterface { static readonly PROVIDER_NAME = "in-memory"; private users; constructor(data: any, factory: UserFactoryFunc); loadUserByUsername(username: string): Promise; getName(): string; }