import { AuthToken } from './AuthToken'; /** * A class representing a User who can interact with the API's authenticated endpoints. * This class is a TypeORM entity */ export declare class User { id: string; username: string; passwordHash: string; authToken: AuthToken; }