export declare type AggregateOperatorType = 'max'; export interface AggregateOperatorArgs { operator: AggregateOperatorType; value: T; } export declare class AggregateOperator { readonly type = "aggregate"; readonly operator: AggregateOperatorType; readonly value: T; constructor(args: AggregateOperatorArgs); static isAggregateOperator(value: any): boolean; }