import type { GherkinDocument } from '@cucumber/messages'; import type { IndexHit, TypedIndex } from './types.js'; /** * A little different to the other indexes - a Feature doesn't have its own id, * so we use the uri of the GherkinDocument as a pointer */ export declare class FeatureSearch implements TypedIndex { private readonly index; constructor(); search(term: string): Promise>; add(gherkinDocument: GherkinDocument, _uri: string): Promise; } //# sourceMappingURL=FeatureSearch.d.ts.map