import { OrgUser } from './tenant.entities'; import type { Response } from 'express'; import type { AnyAuthRequest, AuthResult } from '../helper/interfaces'; import type { JwtPayload } from '../core/auth/auth.interfaces'; export declare type OrgJwtAuthRequest = AnyAuthRequest; export declare class OrgAuthHelper { static populate(req: OrgJwtAuthRequest, payload: JwtPayload): Promise; static auth(req: OrgJwtAuthRequest, res: Response): Promise>; }