import { RelationMappings } from 'objection'; import { AbstractModel } from './abstract-model'; import { User } from './user'; export declare class SessionToken extends AbstractModel { userId: number; token: string; expires: Date; user?: User; constructor(userId: number, token: string, expires: Date); static tableName: string; static jsonSchema: { type: string; required: string[]; properties: { userId: { type: string; }; token: { type: string; }; }; }; static relationMappings: RelationMappings; }