import { Entity } from '@loopback/repository'; export declare class User extends Entity { tenantId?: string; id?: string; name: string; constructor(data?: Partial); } export interface UserRelations { } export type UserWithRelations = User & UserRelations;