import { Entity } from './Entity'; export declare class Repository { values: T[]; constructor(); add(entity: T): void; remove(entity: T): void; removeById(id: string): void; findById(id: string): T | undefined; getByIdSafe(id: string): T; }