import { CriteriaOperator } from '../criteriaOperator'; export declare enum GroupOperatorType { And = 0, Or = 1 } export interface IGroupOperatorOptions { operation: GroupOperatorType; operands: Array; }