import { Reply } from "@webiny/handler"; import { AfterAuthenticationEventHandler } from "../../../../features/security/authentication/AuthenticationContext/index.js"; import { AuthenticationContext } from "../../../../features/security/authentication/AuthenticationContext/index.js"; declare class SetIdTokenCookieImpl implements AfterAuthenticationEventHandler.Interface { private authenticationContext; private reply; constructor(authenticationContext: AuthenticationContext.Interface, reply: Reply.Interface); handle(): Promise; } export declare const SetIdTokenCookie: import("@webiny/di").Implementation; export {};