import { ISessionRepository } from '../../interfaces/core/ISessionRepository'; import { ITestSession } from '../../interfaces/core/ITestSession'; export declare class InMemorySessionRepository implements ISessionRepository { private sessions; save(session: ITestSession): void; findByLabel(label: string): ITestSession | null; findById(id: string): ITestSession | null; findAll(): ITestSession[]; exists(id: string): boolean; delete(id: string): boolean; clear(): void; } //# sourceMappingURL=SessionRepository.d.ts.map