export declare type FindOperatorType = 'in' | 'not' | 'equal' | 'gt' | 'gte' | 'lt' | 'lte' | 'inverse'; export interface FindOperatorArgs { operator: FindOperatorType; value: T | FindOperator; } export declare class FindOperator { readonly type = "operator"; readonly operator: FindOperatorType; readonly value: T | FindOperator; constructor(args: FindOperatorArgs); static isFindOperator(value: any): boolean; }