import { AbstractIndexCreationTaskBase } from "../AbstractIndexCreationTaskBase.js"; import { FieldIndexing, FieldStorage, FieldTermVector } from "../Enums.js"; import { SpatialOptions, SpatialOptionsFactory } from "../Spatial.js"; import { CountersIndexDefinition } from "./CountersIndexDefinition.js"; import { FieldVectorOptions } from "../../Queries/VectorSearch/VectorSearchOptions.js"; export declare abstract class AbstractGenericCountersIndexCreationTask extends AbstractIndexCreationTaskBase { protected _reduce: string; protected _storesStrings: Record; protected _indexesStrings: Record; protected _analyzersStrings: Record; protected _indexSuggestions: Set; protected _termVectorsStrings: Record; protected _spatialOptionsStrings: Record; protected _vectorOptionsStrings: Record; protected _outputReduceToCollection: string; protected _patternForOutputReduceToCollectionReferences: string; protected _patternReferencesCollectionName: string; constructor(); /** * Gets a value indicating whether this instance is map reduce index definition */ get isMapReduce(): boolean; /** * Register a field to be indexed */ protected index(field: string, indexing: FieldIndexing): void; /** * Register a field to be spatially indexed */ protected spatial(field: string, indexing: (spatialOptsFactory: SpatialOptionsFactory) => SpatialOptions): void; protected storeAllFields(storage: FieldStorage): void; /** * Register a field to be stored */ protected store(field: string, storage: FieldStorage): void; /** * Register a field to be analyzed */ protected analyze(field: string, analyzer: string): void; /** * Register a field to have term vectors */ protected termVector(field: string, termVector: FieldTermVector): void; protected suggestion(field: string): void; protected vectorField(field: string, vector: FieldVectorOptions): void; } //# sourceMappingURL=AbstractGenericCountersIndexCreationTask.d.ts.map