import { UserProviderInterface } from '../interfaces'; import { UserInterface } from '@rxstack/core'; export declare class NoopUserProvider implements UserProviderInterface { static readonly PROVIDER_NAME = "noop"; loadUserByUsername(username: string): Promise; getName(): string; }