import { Org } from './Org'; import { Product } from './Product'; import { CustomBaseEntity } from '../CustomBaseEntity'; export declare class User extends CustomBaseEntity { id: string; name: string; orgId: string; testJsonB: object; org: Org; products: Product[]; }