import { Bone } from 'leoric';
export declare class User extends Bone {
id: bigint;
createdAt: Date;
updatedAt: Date;
userId: string;
name: string;
email: string;
passwordSalt: string;
passwordIntegrity: string;
ip: string;
isPrivate: boolean;
scopes: string[];
}