import type { VectorStoreSearchInput } from "../types/index.js"; export declare function vectorStoreSearch(args: VectorStoreSearchInput): Promise<{ content: { type: "text"; text: string; }[]; isError?: undefined; } | { content: { type: "text"; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=vector-store-search.d.ts.map