import { EAuthInfo, IAuthInfo } from "../types"; import { JwtTokenService } from "../jwt-token.service"; export declare class AuthInfo { static validate(request: any, authType: any, jwtService: JwtTokenService): Promise; static getAll(request: any): IAuthInfo; static getByName(request: any, fieldName: EAuthInfo): any; static getByNames(request: any, fieldNames: Array): Array; static getUserId(request: any): string; static getDomain(request: any): string; }