import { User } from './user.interface';
import { UserStore } from './user.store.interface';
export declare class MemoryUserStore implements UserStore {
private cache;
get(key: string): User;
set(key: string, value: User): boolean;
remove(key: string): void;
}