import { RteArea } from './RteArea.js';
import '../common/CommonPostAddress.js';

declare class GenericContact {
    manager?: string | null;
    costCentre?: string | null;
    csiGeneratedNumber?: string | null;
    userId: string | null;
    firstName?: string | null;
    surname?: string | null;
    email?: string | null;
    rarCode?: number | null;
    status?: string | null;
    gvtsMarker?: string | null;
    examinerType?: string | null;
    ehrEmployeeId?: string | null;
    workTelephone?: string | null;
    mobileTelephone?: string | null;
    version?: string | null;
    rteArea?: RteArea;
}

export { GenericContact };
