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