/** * The status of the Employee being retrieved. * * DEPRECATED at version 2020-08-26. Replaced by [TeamMemberStatus](entity:TeamMemberStatus). */ export declare const EmployeeStatus: { readonly Active: "ACTIVE"; readonly Inactive: "INACTIVE"; }; export type EmployeeStatus = (typeof EmployeeStatus)[keyof typeof EmployeeStatus];