export declare enum TableEntryDependencyFlag { /** * If set, table entry is externally dependent on an xref */ XrefDependent = 16, /** * If both this bit and bit 16 are set, the externally dependent xref * has been successfully resolved * */ XrefResolved = 32, /** * If set, the table entry was referenced by at least one entity in the * drawing the last time the drawing was edited. * * This flag is for the benefit of AutoCAD commands. It can be ignored * by most programs that read DXF files and need not be set by programs * that write DXF files. */ Referenced = 64 } export declare enum ViewMode { Off = 0, Perspective = 1, ClipFront = 2, ClipBack = 4, UcsFollow = 8, /** * Determines the behavior of front clipping plane. * * - If turned on, `FRONTZ` determines the front clipping plane. * - If turned off, `FRONTZ` is ignored, and the front clipping plane * may pass through the camera point. * * This setting is ignored if `ViewMode.ClipFront` is off. */ ClipFrontByFrontZ = 16 } //# sourceMappingURL=consts.d.ts.map