import { ITestSession, TestSessionOptions } from './ITestSession'; export type SessionSetupFunction = () => Promise | void; export interface ISessionManager { createSession(label: string, setupFn: SessionSetupFunction, options?: Partial): Promise; getSession(label: string): ITestSession | null; getAllSessions(): ITestSession[]; deleteSession(label: string): boolean; exists(label: string): boolean; clear(): void; } //# sourceMappingURL=ISessionManager.d.ts.map