export type SessionInjectedRulesCache = { contentHashes: Set; realPaths: Set; }; export declare function createSessionCacheStore(): { getSessionCache: (sessionID: string) => SessionInjectedRulesCache; clearSessionCache: (sessionID: string) => void; };