import { IOmegaValue } from "./others"; export interface IEntityToken { token: string; entityType: 'O' | 'S' | 'P' | 'TREE'; treeId: IOmegaValue | null; isRoot: boolean | undefined; uuid: string; producedBySeq: number; humanSnapshot: HumanSnapshot; } export type HumanSnapshot = Partial>; export type HumanReadableInputKey = 'CODE' | 'SHORT_CODE' | 'ORIGINAL_NAME' | 'TREE_NAME' | 'ROLE' | 'NOTE'; export declare const HUMAN_LABEL_MAP: Record;