import { IdentifiableField, IdentifiableObject } from '../../../shared'; export type UserField = IdentifiableField; export declare class User extends IdentifiableObject { static resourceName: string; static singularResourceName: string; static fields: UserField[]; email: string; dataViewOrganisationUnits: any[]; organisationUnits: any[]; userCredentials: any; userGroups: any[]; constructor(user: Partial); }