import type { Session } from '@ms-cloudpack/common-types'; /** * Tracks active sessions to disk as they are started. This gives us a way to enumerate * all active sessions for scenarios like better error messages when sessions are already * running for a given path, or for the link verb where we want to manipulate an active * running session. */ export declare function trackSession(session: Session): Promise<{ close: () => Promise; }>; //# sourceMappingURL=trackSession.d.ts.map