import type { Annotation } from "./Annotation"; export type VectorField = { indexName: string; embeddingProperty: string; queryName: string; provider?: string; callback?: string; }; export declare class VectorAnnotation implements Annotation { readonly name = "vector"; readonly indexes: VectorField[]; constructor({ indexes }: { indexes: VectorField[]; }); } //# sourceMappingURL=VectorAnnotation.d.ts.map