import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { EmployeeCompany } from "./EmployeeCompany"; import { EmployeeStatus } from "./EmployeeStatus"; import { RemoteData } from "./RemoteData"; export declare const Employee: core.serialization.ObjectSchema; export declare namespace Employee { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; first_name?: string | null; last_name?: string | null; is_contractor?: boolean | null; employee_number?: string | null; email_address?: string | null; company?: EmployeeCompany.Raw | null; status: EmployeeStatus.Raw; remote_was_deleted?: boolean | null; field_mappings?: Record | null; remote_data?: RemoteData.Raw[] | null; } }