import type { Response } from 'express'; import type { ActorType } from './tokens'; export declare function getSessionCookieName(actorType: ActorType): string; export declare function setSessionCookie(res: Response, actorType: ActorType, token: string, maxAgeMs?: number): void; export declare function clearSessionCookie(res: Response, actorType: ActorType): void; //# sourceMappingURL=sessionCookies.d.ts.map