/*! * @license * Copyright Squiz Australia Pty Ltd. All Rights Reserved. */ export type EntityType = ENTITY_TYPES | EntityTypeRaw; export type EntityTypeRaw = string; export declare enum ENTITY_TYPES { job = "job", manifest = "manifest", jobExecution = "jobExecution", context = "context" }