import { Response } from 'express'; export declare function verifyToken(token: string, tenant: string): Promise; export declare function verifyRefreshToken(refreshToken: string, tenant: string): Promise; export declare function getUniqueId(creationTime?: string): string; export declare function setCookie(res: Response, cookieId: string, maxAge?: number): Response>; export declare function getSignedToken(user: any, tokenIdentifier: string, expiresIn?: string): { payload: { sub: any; tenant: any; email: any; name: any; roles: any; }; token: string; };