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