import { Org, ProductView } from "."; import { CustomBaseEntity } from "../CustomBaseEntity"; export declare class UserView extends CustomBaseEntity { id: string; name: string; orgId: string; testJsonB: object; org: Org; products: ProductView[]; }