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