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