import { ValidationError } from 'class-validator'; import { IValidatable } from '../interface/IValidatable'; export declare class Session implements IValidatable { constructor(partial?: Partial); id: string; ip: string; userAgent?: string; acceptLanguage?: string; screenHeight?: number; screenWidth?: number; isValid(): Promise; getValidationErrors(): Promise; }