import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { EmployeeStatus } from "./EmployeeStatus"; export declare const Employee: core.serialization.ObjectSchema; export declare namespace Employee { interface Raw { id?: string | null; first_name?: (string | null | undefined) | null; last_name?: (string | null | undefined) | null; email?: (string | null | undefined) | null; phone_number?: (string | null | undefined) | null; location_ids?: (string[] | null | undefined) | null; status?: EmployeeStatus.Raw | null; is_owner?: (boolean | null | undefined) | null; created_at?: string | null; updated_at?: string | null; } }