export interface ICondition { /** * The condition is met for entities that are direct or indirect descendants of the entities with the specified ids. * The entities are combined using the "OR" operator. */ entityIds: Array; /** * The condition is met for entities that are direct descendants of the entities with the specified ids. * The entities are combined using the "OR" operator. */ directEntityIds: Array; } export declare class Condition implements ICondition { entityIds: Array; directEntityIds: Array; }