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