/** * This file was auto-generated by Fern from our API Definition. */ /** * * `ACTIVE` - Active * * `ARCHIVED` - Archived * * `PENDING_DELETION` - Pending Deletion */ export type EntityStatus = "ACTIVE" | "ARCHIVED" | "PENDING_DELETION"; export declare const EntityStatus: { readonly Active: "ACTIVE"; readonly Archived: "ARCHIVED"; readonly PendingDeletion: "PENDING_DELETION"; };