import { FieldDescription } from '../../../keyword/field/field-description'; import { ValueType } from '../../../operands/value-type'; export interface CountDescription { count: { field: ValueType | FieldDescription; distinct?: boolean; }; } export declare const isCountDescription: (val: any) => val is CountDescription;